Notice
Recent Posts
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 | 31 |
Tags
- 개발자스터디
- Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
- 주니어개발자역량강화
- 주니어개발자멘토링
- 파이썬 sep
- MomentumParameters
- 99클럽 #99일지 #코딩테스트 #개발자스터디 #항해 #til
- 코딩부트캠프후기
- cp949
- 99클럽
- 항해99
- 백준
- 코딩테스트
- EnvCommandError
- 항해플러스
- 개발자사이드프로젝트
- print sep
- vscode cp949
- 항해
- 파이썬
- 파이썬 map 함수
- 10430번
- fatal:not a git repository
- 파이썬 |
- 파이썬 int()
- Til
- 파이썬 클래스
- 99일지
- print("""
- not a git repository
Archives
- Today
- Total
선발대
[스파르타] 99클럽 2기 코테스터디 35일차 TIL / leet 341 본문
Leetcode: 341. Flatten Nested List Iterator (링크)
# """
# This is the interface that allows for creating nested lists.
# You should not implement it, or speculate about its implementation
# """
#class NestedInteger:
# def isInteger(self) -> bool:
# """
# @return True if this NestedInteger holds a single integer, rather than a nested list.
# """
#
# def getInteger(self) -> int:
# """
# @return the single integer that this NestedInteger holds, if it holds a single integer
# Return None if this NestedInteger holds a nested list
# """
#
# def getList(self) -> [NestedInteger]:
# """
# @return the nested list that this NestedInteger holds, if it holds a nested list
# Return None if this NestedInteger holds a single integer
# """
class NestedIterator:
def process_element(self, element):
if element.isInteger():
return [element.getInteger()]
element_results = []
for element_local in element.getList():
element_results += self.process_element(element_local)
return element_results
def __init__(self, nestedList: [NestedInteger]):
self.curr_list = []
for element in nestedList:
self.curr_list += self.process_element(element)
self.idx = 0
def next(self) -> int:
element = self.curr_list[self.idx]
self.idx += 1
return element
def hasNext(self) -> bool:
return self.idx < len(self.curr_list)
# Your NestedIterator object will be instantiated and called as such:
# i, v = NestedIterator(nestedList), []
# while i.hasNext(): v.append(i.next())
'스파르타코딩클럽 > 활동 내용' 카테고리의 다른 글
[스파르타] 99클럽 2기 코테스터디 37일차 TIL / leet 921 (0) | 2024.06.25 |
---|---|
[스파르타] 99클럽 2기 코테스터디 36일차 TIL / leet 2390 (0) | 2024.06.24 |
[스파르타] 99클럽 2기 코테스터디 34일차 TIL / leet 1823 (0) | 2024.06.22 |
[스파르타] 99클럽 2기 코테스터디 33일차 TIL / leet 869 (0) | 2024.06.21 |
[스파르타] 99클럽 2기 코테스터디 32일차 TIL / leet 347 (0) | 2024.06.20 |
Comments