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

문제 문제 링크 코드 import sys input = sys.stdin.readline N = int(input()) stack = list() def push(stack, num): stack.append(num) def pop(stack): if len(stack) != 0: n = stack[len(stack)-1] print(n) del stack[-1] else: print(-1) def size(stack): print(len(stack)) def empty(stack): if len(stack) == 0: print(1) else: print(0) def top(stack): if len(stack) != 0: print(stack[len(stack)-1]) else: print(-1) f..
알고리즘 문제/자료구조 문제
2022. 7. 18. 14:28