| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- 리얼 클래스
- 읽기
- Writing
- 10분
- 미드시청
- Daily Challenge
- English
- 화상영어
- 30분
- 월간
- 영어원서읽기
- 링피트
- 사이드
- realclass
- 파비최
- leetcode
- 괜찮음
- 영어공부
- 운동
- 만화도
- 잡생각
- 매일
- 쓰릴오브파이트
- 프로젝트
- 뭐든
- 3줄정리
- 개발자
- FIT XR
- 스탭퍼
- Problem Solving
Archives
- Today
- Total
파비의 매일매일 공부기록
Today's Challenge 본문
https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree/
Lowest Common Ancestor of a Binary Tree - LeetCode
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
오랫만에 트리 구조의 문제
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