반응형
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
- 스택
- 일곱 난쟁이
- 99클럽
- BOJ
- python 14503
- leetcode 2405
- 개발자 취업
- 백준 막대기
- Python
- 백준 카드1
- 백준 팰린드롬수
- 99항해
- 파이썬
- 항해99
- python 2309
- 백준
- Python 20001
- 백준 2309
- python 10989
- python 1259
- softeer
- 프로그래머스
- leetcode
- BFS
- python 10250
- 큐
- 구현
- til
- 코딩테스트 준비
- boj 2309
Archives
- Today
- Total
동까의 코딩
[99클럽] 12일차 TIL 본문
반응형
leetcode의 dfs 문제를 풀어보았습니다.
https://leetcode.com/problems/deepest-leaves-sum/submissions/1273992637/
아직은 클래스로 구현하는것이 어렵지만 여러 문제를 많이 풀어봐야 할 것 같습니다.
from collections import defaultdict
class Solution:
def deepestLeavesSum(self, root: Optional[TreeNode]) -> int:
nodelevel = defaultdict(list)
def dfs(currentNode : TreeNode, level: int):
if not nodelevel[level]:
nodelevel[level] = []
nodelevel[level].append(currentNode.val)
if currentNode.left:
dfs(currentNode.left, level + 1)
if currentNode.right:
dfs(currentNode.right, level + 1)
dfs(root, 0)
maxLevel = max(nodelevel.keys())
result = sum(nodelevel[maxLevel])
return result
반응형
'문제 풀이 > 99클럽' 카테고리의 다른 글
[99클럽] 14일차 TIL (0) | 2024.06.03 |
---|---|
[99클럽] 13일차 TIL (0) | 2024.06.02 |
[99클럽] 11일차 TIL (0) | 2024.05.31 |
[99클럽] 10일차 TIL (0) | 2024.05.30 |
[99클럽] 10일차 TIL (0) | 2024.05.29 |