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 |
Tags
- DP
- Python
- 중간
- backtracking
- tree
- Array
- matrix
- 재귀
- 이진트리
- 미디움
- Binary
- two pointers
- binary search
- easy
- dfs
- sorting
- linked list
- leetcode
- list
- binary tree
- recursive
- Depth-first Search
- string
- HashTable
- 리트코드
- hash table
- Medium
- math
- 쉬움
- 문자열
Archives
- Today
- Total
목록2024/02/21 (1)
부부의 코딩 성장 일기
LeetCode 102(Binary Tree Level Order Traversal, Python)
1. 문제 링크 https://leetcode.com/problems/binary-tree-level-order-traversal/ - LeetCode Can you solve this real interview question? - Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 2. 문제 설명 이진 트리의 각 레벨마다 노드 값을 모두 담은 리스트를 반환하는 것 예시) 아래 트리가 주어지면 [[3],[9,20],[15,7]]를 반환 3 / \ 9 20 / \ 15 7 3. 처음..
Algorithm/LeetCode
2024. 2. 21. 19:00