:: Python 🚩/알고리즘4 BFS & DFS stack = [] stack.append(5) #push 5 stack.append(2) #push 2 stack.append(3) #push 3 stack.append(7) #push 7 stack.pop() stack.append(1) #push 1 stack.append(4) #push 4 stack.pop() print(stack[::-1]) #최상단 원소부터 출력 print(stack) #최하단 원소부터 출력 from collections import deque queue = deque() queue.append(5) queue.append(2) queue.append(3) queue.append(7) queue.popleft() queue.append(1) queue.append(4) que.. 2023. 2. 16. [코딩] [백준 2884 python] https://www.acmicpc.net/problem/2884 2884번: 알람 시계 상근이는 매일 아침 알람을 듣고 일어난다. 알람을 듣고 바로 일어나면 다행이겠지만, 항상 조금만 더 자려는 마음 때문에 매일 학교를 지각하고 있다. 상근이는 모든 방법을 동원해보았지만, www.acmicpc.net h, m = map(int, input().split()) if 45 2023. 1. 19. [코딩] [백준 14681 python] https://www.acmicpc.net/problem/14681 x = int(input()) y = int(input()) if 0 < x : if 0 < y: print("1") if y < 0 : print("4") if x < 0 : if 0 < y: print("2") if y < 0: print("3") 2023. 1. 19. [코딩] [백준 10808 python] https://www.acmicpc.net/problem/18108 num = int(input()) num = num - 543 print(num) 2023. 1. 19. 이전 1 다음 728x90