Skip to content

Commit ea53725

Browse files
committed
update
1 parent 36517ef commit ea53725

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed
File renamed without changes.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ Problem | Solution | Time | Space | Difficul
225225
[Combination Sum]| [combination-sum.py] | _O(n)_ | _O(n)_ | Medium |
226226
[Combination Sum II]| [combination-sum-ii.py]| _O(n)_| _O(n)_ | Medium |
227227
[Combinations]| [combinations.py] | _O(n!)_ | _O(n)_ | Medium |
228+
[Generate Parentheses]| [generate-parentheses.py]| _O(4^n / n^(3/2))_ | _O(n)_ | Medium |
228229

229230
[Balanced Binary Tree]:https://oj.leetcode.com/problems/balanced-binary-tree/
230231
[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
236237
[combination-sum-ii.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/combination-sum-ii.py
237238
[Combinations]:https://oj.leetcode.com/problems/combinations/
238239
[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
239242

240243
---
241244

0 commit comments

Comments
 (0)