| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- 매일
- 영어원서읽기
- 잡생각
- 3줄정리
- 뭐든
- FIT XR
- 운동
- 읽기
- leetcode
- 화상영어
- 링피트
- 괜찮음
- 리얼 클래스
- 사이드
- 스탭퍼
- Daily Challenge
- Writing
- 쓰릴오브파이트
- Problem Solving
- 파비최
- 개발자
- 만화도
- 10분
- 프로젝트
- realclass
- 미드시청
- 월간
- English
- 영어공부
- 30분
Archives
- Today
- Total
파비의 매일매일 공부기록
Today's Challenge 본문
https://leetcode.com/problems/average-of-levels-in-binary-tree/
Average of Levels in 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
Queue를 이용한 BFS로 간단히 풀 수 있음.
class Solution:
def averageOfLevels(self, root: Optional[TreeNode]) -> List[float]:
qu = []
res = []
qu.append(root)
while qu:
l = len(qu)
temp = 0
for i in range(l):
node = qu.pop(0)
temp += node.val
if node.left:
qu.append(node.left)
if node.right:
qu.append(node.right)
res.append(temp/l)
return res반응형
'Problem Solving > LeetCode' 카테고리의 다른 글
| Today's Challenge (0) | 2022.09.04 |
|---|---|
| Today's Challenge (0) | 2022.09.03 |
| Today's Challenge (0) | 2022.09.01 |
| Today's Challenge (0) | 2022.08.31 |
| Today's Challenge (0) | 2022.08.30 |
Comments