Skip to content

Commit ce6514a

Browse files
committed
更新题解
1 parent 710040b commit ce6514a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Algorithms/0078. Subsets/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,5 @@ Given a set of **distinct** integers, *nums*, return all possible subsets (th
3131
## 解题思路
3232

3333
- 找出一个集合中的所有子集,空集也算是子集。且数组中的数字不会出现重复。用 DFS 暴力枚举即可。
34+
- 这一题和第 90 题,第 491 题类似,可以一起解答和复习。
3435

Algorithms/0090. Subsets II/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ Given a collection of integers that might contain duplicates, ***nums***, retur
2929

3030
- 这一题是第 78 题的加强版,比第 78 题多了一个条件,数组中的数字会出现重复。
3131
- 解题方法依旧是 DFS,需要在回溯的过程中加上一些判断。
32+
- 这一题和第 78 题,第 491 题类似,可以一起解答和复习。
3233

0 commit comments

Comments
 (0)