일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 사이드
- 매일
- 리얼 클래스
- 잡생각
- Daily Challenge
- 쓰릴오브파이트
- FIT XR
- 읽기
- 화상영어
- 영어원서읽기
- 3줄정리
- 스탭퍼
- Writing
- 10분
- 30분
- 미드시청
- 개발자
- English
- realclass
- 링피트
- 프로젝트
- 만화도
- 파비최
- 월간
- 괜찮음
- 뭐든
- 영어공부
- Problem Solving
- 운동
- leetcode
Archives
- Today
- Total
파비의 매일매일 공부기록
Today's Challenge 본문
https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree/
오랫만에 트리 구조의 문제
class Solution:
def lowestCommonAncestor(self, root: 'TreeNode', p: 'TreeNode', q: 'TreeNode') -> 'TreeNode':
stack = [root]
parent = {root: None}
while p not in parent or q not in parent:
node = stack.pop()
if node.left:
parent[node.left] = node
stack.append(node.left)
if node.right:
parent[node.right] = node
stack.append(node.right)
ancestors = set()
while p:
ancestors.add(p)
p = parent[p]
while q not in ancestors:
q = parent[q]
return q
반응형
'Problem Solving > LeetCode' 카테고리의 다른 글
Today's Challenge (0) | 2022.07.28 |
---|---|
Today's Challenge (0) | 2022.07.27 |
Today's Challenge (0) | 2022.07.25 |
Today's Challenge (0) | 2022.07.24 |
Today's Challenge (0) | 2022.07.23 |
Comments