File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -225,6 +225,7 @@ Problem | Solution | Time | Space | Difficul
225
225
[ Combination Sum] | [ combination-sum.py] | _ O(n)_ | _ O(n)_ | Medium |
226
226
[ Combination Sum II] | [ combination-sum-ii.py] | _ O(n)_ | _ O(n)_ | Medium |
227
227
[ Combinations] | [ combinations.py] | _ O(n!)_ | _ O(n)_ | Medium |
228
+ [ Generate Parentheses] | [ generate-parentheses.py] | _ O(4^n / n^(3/2))_ | _ O(n)_ | Medium |
228
229
229
230
[ Balanced Binary Tree ] :https://oj.leetcode.com/problems/balanced-binary-tree/
230
231
[ balanced-binary-tree.py ] :https://github.com/kamyu104/LeetCode/blob/master/Python/balanced-binary-tree.py
@@ -236,6 +237,8 @@ Problem | Solution | Time | Space | Difficul
236
237
[ combination-sum-ii.py ] :https://github.com/kamyu104/LeetCode/blob/master/Python/combination-sum-ii.py
237
238
[ Combinations ] :https://oj.leetcode.com/problems/combinations/
238
239
[ combinations.py ] :https://github.com/kamyu104/LeetCode/blob/master/Python/combinations.py
240
+ [ Generate Parentheses ] :https://oj.leetcode.com/problems/generate-parentheses/
241
+ [ generate-parentheses.py ] :https://github.com/kamyu104/LeetCode/blob/master/Python/generate-parentheses.py
239
242
240
243
---
241
244
You can’t perform that action at this time.
0 commit comments