Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- hash table
- binary tree
- HashTable
- dfs
- binary search
- 재귀
- 이진트리
- two pointers
- recursive
- 중간
- math
- 리트코드
- DP
- 미디움
- leetcode
- list
- Medium
- backtracking
- Depth-first Search
- Array
- Binary
- sorting
- 문자열
- Python
- easy
- tree
- string
- 쉬움
- matrix
- linked list
Archives
- Today
- Total
목록2023/12/19 (1)
부부의 코딩 성장 일기
LeetCode 22(Generate Parentheses, Python)
1. 문제 링크 https://leetcode.com/problems/generate-parentheses Generate Parentheses - LeetCode Can you solve this real interview question? Generate Parentheses - Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. Example 1: Input: n = 3 Output: ["((()))","(()())","(())()","()(())","()()()"] Exa leetcode.com 2. 문제 설명 주어진 n쌍의 괄호로, 올바르게 구성된 괄호의 모든 조..
Algorithm/LeetCode
2023. 12. 19. 19:00