| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 재귀
- easy
- hash table
- list
- 미디움
- Array
- 문자열
- Python
- 리트코드
- leetcode
- 이진트리
- dfs
- 쉬움
- binary tree
- backtracking
- 중간
- recursive
- matrix
- string
- Depth-first Search
- linked list
- DP
- tree
- math
- sorting
- Medium
- two pointers
- Binary
- binary search
- HashTable
- Today
- Total
목록Preorder Traversal (2)
부부의 코딩 성장 일기
1. 문제 링크 Symmetric Tree - LeetCode Symmetric Tree - LeetCode Can you solve this real interview question? Symmetric Tree - Given the root of a binary tree, check whether it is a mirror of itself (i.e., symmetric around its center). Example 1: [https://assets.leetcode.com/uploads/2021/02/19/symtree1.jpg] Input: roo leetcode.com 2. 문제 설명 주어진 이진 트리가 가운데에 대하여 좌우 대칭인지 판단하는 문제 True인 예시 1 / \ 2 2 / \ / ..
1. 문제 링크 Binary Tree Inorder Traversal - LeetCode Binary Tree Inorder Traversal - LeetCode Can you solve this real interview question? Binary Tree Inorder Traversal - Given the root of a binary tree, return the inorder traversal of its nodes' values. Example 1: [https://assets.leetcode.com/uploads/2020/09/15/inorder_1.jpg] Input: root = [1,nu leetcode.com 2. 문제 설명 이진 트리가 주어졌을 때 중위 순회(inorder tra..