Skip to content

Commit

Permalink
修复描述
Browse files Browse the repository at this point in the history
  • Loading branch information
cuishuang committed Apr 3, 2023
1 parent 5333a1a commit 6d04d15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion leetcode/0040.Combination-Sum-II/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ candidates 中的每个数字在每个组合中只能使用一次。
## 解题思路

- 题目要求出总和为 sum 的所有组合,组合需要去重。这一题是第 39 题的加强版,第 39 题中元素可以重复利用(重复元素可无限次使用),这一题中元素只能有限次数的利用,因为存在重复元素,并且每个元素只能用一次(重复元素只能使用有限次)
- 这一题和第 47 题类似,只不过元素可以反复使用
- 这一题和第 47 题类似。
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ candidates 中的每个数字在每个组合中只能使用一次。
## 解题思路

- 题目要求出总和为 sum 的所有组合,组合需要去重。这一题是第 39 题的加强版,第 39 题中元素可以重复利用(重复元素可无限次使用),这一题中元素只能有限次数的利用,因为存在重复元素,并且每个元素只能用一次(重复元素只能使用有限次)
- 这一题和第 47 题类似,只不过元素可以反复使用
- 这一题和第 47 题类似。

## 代码

Expand Down

0 comments on commit 6d04d15

Please sign in to comment.