반응형
Recent Posts
Notice
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 |
Tags
- 백준 막대기
- python 10989
- 코딩테스트 준비
- python 14503
- 백준 팰린드롬수
- 백준
- softeer
- til
- python 1259
- leetcode 2405
- 파이썬
- 항해99
- 일곱 난쟁이
- 스택
- 구현
- python 10250
- python 2309
- 큐
- BOJ
- BFS
- 백준 2309
- 99항해
- boj 2309
- leetcode
- 백준 카드1
- Python 20001
- 개발자 취업
- 99클럽
- 프로그래머스
- Python
Archives
- Today
- Total
목록2024/06/03 (1)
동까의 코딩
[99클럽] 14일차 TIL
Leetcode에서 그래프 문제를 풀어보았습니다. https://leetcode.com/problems/reverse-odd-levels-of-binary-tree/description/ class Solution: def reverseOddLevels(self, root: Optional[TreeNode]) -> Optional[TreeNode]: nodes = [] level = [root] level_idx = 0 while level: if level_idx % 2 == 0: nodes.append(level) else: nodes.append(le..
문제 풀이/99클럽
2024. 6. 3. 22:22