반응형
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 20001
- 항해99
- python 14503
- 파이썬
- Python
- python 10250
- 백준 2309
- leetcode 2405
- 백준 팰린드롬수
- til
- boj 2309
- 백준
- 99항해
- leetcode
- 개발자 취업
- 구현
- BOJ
- 큐
- 백준 막대기
- python 10989
- python 1259
- 프로그래머스
- 일곱 난쟁이
- python 2309
- 백준 카드1
- softeer
- BFS
- 99클럽
- 코딩테스트 준비
- 스택
Archives
- Today
- Total
동까의 코딩
[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(level[::-1])
level = [child for node in level for child in (node.left, node.right) if child]
level_idx += 1
for i in range(len(nodes) -1):
for j in range(len(nodes[i])):
nodes[i][j].left = nodes[i+1][2 * j]
nodes[i][j].right = nodes[i+1][2 * j + 1]
return nodes[0][0]
def reverseOddLevels(self, root: Optional[TreeNode]) -> Optional[TreeNode]:
def worker(node1, node2, level):
if not node1 and not node2:
return
else:
if level % 2 != 0:
node1.val, node2.val = node2.val, node1.val
worker(node1.left, node2.right, level + 1)
worker(node1.right, node2.left, level + 1)
worker(root.left, root.right, 1)
return root
아직도 리트코드 문제풀이가 어려우니.. 더 풀어봐야겠다.
반응형
'문제 풀이 > 99클럽' 카테고리의 다른 글
[99클럽] 16일차 TIL (0) | 2024.06.05 |
---|---|
[99클럽] 15일차 TIL (0) | 2024.06.04 |
[99클럽] 13일차 TIL (0) | 2024.06.02 |
[99클럽] 12일차 TIL (0) | 2024.06.01 |
[99클럽] 11일차 TIL (0) | 2024.05.31 |