반응형
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
- 백준
- 코딩테스트준비
- BOJ
- BFS
- 알고리즘
- 구현
- 혁펜하임
- 개발자취업
- 스택
- softeer
- 99항해
- leetcode
- 큐
- Python
- 해시
- 항해99
- 99클럽
- easy 딥러닝
- 파이썬
- boj 2309
- 프로그래머스
- 코딩테스트 준비
- 백준 2309
- 딥러닝
- python 2309
- 기능개발
- til
- dfs
- 개발자 취업
- 활성화 함수
Archives
- Today
- Total
목록2024/06/23 (1)
동까의 코딩
[99클럽] 34일차 TIL
https://leetcode.com/problems/flatten-nested-list-iterator/ class NestedIterator(object): def __init__(self, nestedList): def dfs(nestedList): for item in nestedList: if item.isInteger(): self.stack.append(item.getInteger()) else: dfs(item.getList()) self.stack = [] dfs(nestedList) d..
문제 풀이/99클럽
2024. 6. 23. 16:14