일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Class
- LeetCode
- concurrency
- 파이썬
- attribute
- 315. Count of Smaller Numbers After Self
- 컴퓨터의 구조
- Python Code
- Python
- kaggle
- Convert Sorted List to Binary Search Tree
- Protocol
- 30. Substring with Concatenation of All Words
- iterator
- 운영체제
- Decorator
- Python Implementation
- data science
- 밴픽
- DWG
- 43. Multiply Strings
- 109. Convert Sorted List to Binary Search Tree
- Regular Expression
- shiba
- 프로그래머스
- Substring with Concatenation of All Words
- Generator
- 시바견
- 715. Range Module
- t1
Archives
- Today
- Total
Scribbling
LeetCode: 22. Generate Parentheses 본문
class Solution:
def generateParenthesis(self, n: int) -> List[str]:
self.ret = []
self.helper(n, n, '')
return self.ret
def helper(self, l, r, path):
if l == 0:
self.ret.append(path + (')' * r))
return
if l == r:
self.helper(l-1, r, path + '(')
else:
self.helper(l-1, r, path + '(')
self.helper(l, r-1, path + ')')
'Computer Science > Coding Test' 카테고리의 다른 글
LeetCode: 24. Swap Nodes in Pairs (0) | 2021.08.26 |
---|---|
LeetCode: 25. Reverse Nodes in k-Group (0) | 2021.08.25 |
LeetCode: 19. Remove Nth Node From End of List (0) | 2021.08.22 |
LeetCode: 18. 4Sum (0) | 2021.08.22 |
LeetCode: 17. Letter Combinations of a Phone Number (0) | 2021.08.21 |