반응형
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
- 스택
- Python 20001
- BFS
- 백준 팰린드롬수
- python 10989
- 개발자 취업
- Python
- til
- softeer
- 프로그래머스
- 항해99
- 코딩테스트 준비
- boj 2309
- python 1259
- leetcode 2405
- 99항해
- BOJ
- python 2309
- 구현
- python 10250
- python 14503
- 백준 막대기
- 백준 카드1
- leetcode
- 큐
- 백준 2309
- 백준
- 99클럽
- 파이썬
- 일곱 난쟁이
Archives
- Today
- Total
목록2024/06/26 (1)
동까의 코딩
[99클럽] 37일차 TIL
https://leetcode.com/problems/seat-reservation-manager/submissions/1300708018/ heap의 기본적인 동작을 나타내는 문제입니다. from collections import dequeclass SeatManager: def __init__(self, n: int): self.min_heapq = [i for i in range(1, n + 1)] def reserve(self) -> int: return heapq.heappop(self.min_heapq) def unreserve(self, seatNumber: int) -> None: heapq.heappush(self.min_heapq, ..
문제 풀이/99클럽
2024. 6. 26. 18:16