반응형
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
- softeer
- Python 20001
- 백준 2309
- 99클럽
- BFS
- python 1259
- 일곱 난쟁이
- python 14503
- python 10989
- 프로그래머스
- python 2309
- til
- Python
- 백준 막대기
- BOJ
- 99항해
- 구현
- 백준 팰린드롬수
- 큐
- 코딩테스트 준비
- 개발자 취업
- 스택
- python 10250
- 백준
- 백준 카드1
- 항해99
- leetcode
- boj 2309
- leetcode 2405
- 파이썬
Archives
- Today
- Total
목록2024/06/17 (1)
동까의 코딩
[99클럽] 28일차 TIL
https://leetcode.com/problems/iterator-for-combination/submissions/1291059479/ class CombinationIterator: def __init__(self, characters: str, combinationLength: int): self.len = len(characters) self.characters = characters self.pointers = [i for i in range(combinationLength)] self.pointers[-1] -= 1 self.thres = [i for i in range(self.len - len(self.pointers)..
문제 풀이/99클럽
2024. 6. 17. 18:48