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:not a git repository
- 항해플러스
- 파이썬
- not a git repository
- 주니어개발자역량강화
- cp949
- vscode cp949
- 파이썬 클래스
- 항해99
- 파이썬 |
- MomentumParameters
- 99일지
- 백준
- 파이썬 sep
- Til
- print("""
- 파이썬 int()
- print sep
- 코딩테스트
- 파이썬 map 함수
- 99클럽 #99일지 #코딩테스트 #개발자스터디 #항해 #til
- 99클럽
- Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
- 개발자사이드프로젝트
- 항해
- 10430번
- 주니어개발자멘토링
- EnvCommandError
- 코딩부트캠프후기
- 개발자스터디
Archives
- Today
- Total
선발대
[스파르타] 99클럽 2기 코테스터디 29일차 TIL / leet 1286 본문
Leetcode: 1286. Iterator for Combination (링크)
class CombinationIterator:
def __init__(self, characters: str, combinationLength: int):
self.combos = []
self.idx = 0
def helper(string, idx):
if len(string) == combinationLength:
self.combos.append(string)
return
else:
for i in range(idx, len(characters)):
helper(string + characters[i], i + 1)
helper('', 0)
def next(self) -> str:
self.idx += 1
return self.combos[self.idx - 1]
def hasNext(self) -> bool:
return self.idx < len(self.combos)
# Your CombinationIterator object will be instantiated and called as such:
# obj = CombinationIterator(characters, combinationLength)
# param_1 = obj.next()
# param_2 = obj.hasNext()
'스파르타코딩클럽 > 활동 내용' 카테고리의 다른 글
[스파르타] 99클럽 2기 코테스터디 31일차 TIL / leet 451 (0) | 2024.06.19 |
---|---|
[스파르타] 99클럽 2기 코테스터디 30일차 TIL / leet 1529 (0) | 2024.06.18 |
[스파르타] 99클럽 2기 코테스터디 28일차 TIL / leet 1282 (0) | 2024.06.16 |
[스파르타] 99클럽 2기 코테스터디 27일차 TIL / leet 2433 (0) | 2024.06.15 |
[스파르타] 99클럽 2기 코테스터디 26일차 TIL / leet 1476 (0) | 2024.06.14 |
Comments