반응형
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
- 일곱 난쟁이
- 99항해
- softeer
- 구현
- python 1259
- python 10989
- til
- 백준
- python 2309
- boj 2309
- Python 20001
- leetcode 2405
- python 14503
- 스택
- leetcode
- 백준 팰린드롬수
- python 10250
- 백준 2309
- 코딩테스트 준비
- 백준 카드1
- 프로그래머스
- 개발자 취업
- 항해99
- 파이썬
- 99클럽
- BFS
- 백준 막대기
- 큐
- Python
- BOJ
Archives
- Today
- Total
동까의 코딩
[99클럽] 6일차 TIL 본문
반응형
오늘은 리트코드 사이트의 문제를 풀어보았습니다.
https://leetcode.com/problems/smallest-number-in-infinite-set/description/
class SmallestInfiniteSet:
def __init__(self):
self.present = [True for _ in range(1002)]
def popSmallest(self) -> int:
for x in range(1, 1001):
if self.present[x]:
self.present[x] = False
return x
def addBack(self, num: int) -> None:
self.present[num] = True
# Your SmallestInfiniteSet object will be instantiated and called as such:
# obj = SmallestInfiniteSet()
# param_1 = obj.popSmallest()
# obj.addBack(num)
반응형
'문제 풀이 > 99클럽' 카테고리의 다른 글
[99클럽] 8일차 TIL (0) | 2024.05.27 |
---|---|
[99클럽] 7일차 TIL (0) | 2024.05.26 |
[99클럽] 5일차 TIL (0) | 2024.05.24 |
[99클럽] 4일차 TIL (0) | 2024.05.23 |
[99클럽] 3일차 TIL (0) | 2024.05.22 |