일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 만화도
- realclass
- Writing
- 월간
- 10분
- 영어공부
- 읽기
- 링피트
- 파비최
- 개발자
- 괜찮음
- 사이드
- 3줄정리
- 미드시청
- 30분
- 프로젝트
- 스탭퍼
- 영어원서읽기
- 쓰릴오브파이트
- 리얼 클래스
- English
- 운동
- Problem Solving
- 화상영어
- 잡생각
- 뭐든
- 매일
- Daily Challenge
- FIT XR
- leetcode
Archives
- Today
- Total
파비의 매일매일 공부기록
Today's Challenge 본문
https://leetcode.com/problems/flatten-binary-tree-to-linked-list/
이번에도 트리 문제 ㅎㅎㅎ
class Solution:
def flatten(self, root: Optional[TreeNode]) -> None:
def to_right(root):
if root.right:
return to_right(root.right)
return root
if root:
next_right = None
right_most = None
while root:
if root.left:
right_most = to_right(root.left)
next_right = root.right
root.right = root.left
root.left = None
right_most.right = next_right
root = root.right
반응형
'Problem Solving > LeetCode' 카테고리의 다른 글
Today's Challenge (0) | 2022.07.29 |
---|---|
Today's Challenge (0) | 2022.07.28 |
Today's Challenge (0) | 2022.07.26 |
Today's Challenge (0) | 2022.07.25 |
Today's Challenge (0) | 2022.07.24 |
Comments