Skip to content

Commit 24c776f

Browse files
authored
Update 46.permutations.md
1 parent 8fc5dd7 commit 24c776f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

problems/46.permutations.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ https://leetcode-cn.com/problems/permutations/
5050
5151
通用写法的具体代码见下方代码区。
5252

53-
[1,1,2] 为例,我们的逻辑是:
53+
[1,2,3] 为例,我们的逻辑是:
5454

55-
- 先从 [1,1,2] 选取一个数。
56-
- 然后继续从 [1,1,2] 选取一个数,并且这个数不能是已经选取过的数。
55+
- 先从 [1,2,3] 选取一个数。
56+
- 然后继续从 [1,2,3] 选取一个数,并且这个数不能是已经选取过的数。
5757
- 重复这个过程直到选取的数字达到了 3。
5858

5959
## 关键点解析

0 commit comments

Comments
 (0)