반응형
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
- python 1259
- 백준 팰린드롬수
- 백준 2309
- 백준 카드1
- Python
- 코딩테스트 준비
- 항해99
- python 10250
- leetcode
- Python 20001
- 백준
- 일곱 난쟁이
- 큐
- 파이썬
- 99항해
- 구현
- 프로그래머스
- 99클럽
- python 10989
- 개발자 취업
- 백준 막대기
- boj 2309
- softeer
- python 14503
- til
- 스택
- BFS
- python 2309
- BOJ
- leetcode 2405
Archives
- Today
- Total
목록2024/06/01 (1)
동까의 코딩
[99클럽] 12일차 TIL
leetcode의 dfs 문제를 풀어보았습니다. https://leetcode.com/problems/deepest-leaves-sum/submissions/1273992637/ 아직은 클래스로 구현하는것이 어렵지만 여러 문제를 많이 풀어봐야 할 것 같습니다. from collections import defaultdictclass Solution: def deepestLeavesSum(self, root: Optional[TreeNode]) -> int: nodelevel = defaultdict(list) def dfs(currentNode : TreeNode, level: int): if not nodelevel[level]: ..
문제 풀이/99클럽
2024. 6. 1. 17:23