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
- dfs
- recursive
- 미디움
- 쉬움
- 문자열
- sorting
- matrix
- 리트코드
- binary tree
- binary search
- Binary
- linked list
- 이진트리
- Array
- Medium
- Python
- string
- Depth-first Search
- backtracking
- two pointers
- math
- list
- 재귀
- hash table
- tree
- HashTable
- 중간
- leetcode
- easy
- DP
Archives
- Today
- Total
목록큐 (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