일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- python3
- popleft
- unity
- 파이썬
- 1일1솔
- 프로그래머스
- 소수찾기
- JPA
- pypy3
- Python
- spring
- BFS
- appendleft
- deque
- Java
- DP
- 인프런
- 브루투포스
- 누적합
- 합 구하기
- LCM
- mvc
- 백준
- 그리디 알고리즘
- 소수판별
- 우선순위큐
- C#강의
- c#
- 완전탐색
- 연관관계
Archives
- Today
- Total
목록18258 (1)
jae_coding

문제 문제 링 코드 import sys from collections import deque input = sys.stdin.readline def push(lst, num): lst.append(num) def pop(lst): if len(lst) != 0: print(lst[0]) lst.popleft() else: print(-1) def size(lst): print(len(lst)) def empty(lst): if len(lst) != 0: print(0) else: print(1) def front(lst): if len(lst) != 0: print(lst[0]) else: print(-1) def back(lst): if len(lst) != 0: print(lst[-1]) else: ..
알고리즘 문제/자료구조 문제
2022. 7. 18. 15:38