Skip to content

Commit 3260ac9

Browse files
committed
feat: add solutions to lc problem: No.0077
No.0077.Combinations
1 parent 32e503a commit 3260ac9

File tree

12 files changed

+720
-195
lines changed

12 files changed

+720
-195
lines changed

solution/0000-0099/0039.Combination Sum/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@
6666

6767
时间复杂度 $O(2^n \times n)$,空间复杂度 $O(n)$。其中 $n$ 为数组 $candidates$ 的长度。由于剪枝,实际的时间复杂度要远小于 $O(2^n \times n)$。
6868

69+
相似题目:
70+
71+
- [40. 组合总和 II](/solution/0000-0099/0040.Combination%20Sum%20II/README.md)
72+
- [77. 组合](/solution/0000-0099/0077.Combinations/README.md)
73+
- [216. 组合总和 III](/solution/0200-0299/0216.Combination%20Sum%20III/README.md)
74+
6975
<!-- tabs:start -->
7076

7177
### **Python3**

solution/0000-0099/0040.Combination Sum II/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,12 @@
6262

6363
时间复杂度 $O(2^n \times n)$,空间复杂度 $O(n)$。其中 $n$ 为数组 $candidates$ 的长度。由于剪枝,实际的时间复杂度要远小于 $O(2^n \times n)$。
6464

65+
相似题目:
66+
67+
- [39. 组合总和](/solution/0000-0099/0039.Combination%20Sum/README.md)
68+
- [77. 组合](/solution/0000-0099/0077.Combinations/README.md)
69+
- [216. 组合总和 III](/solution/0200-0299/0216.Combination%20Sum%20III/README.md)
70+
6571
<!-- 这里可写通用的实现逻辑 -->
6672

6773
<!-- tabs:start -->

0 commit comments

Comments
 (0)