-
[알고리즘] 10828 파이썬TodayILearned/알고리즘 2021. 3. 18. 20:05
# 스택의 queue, pop 등의 기능을 잘 익히도록 도와주는 문제였다.
# if, elif, else문으로 잘 분기해줘야 에러가 발생하지 않아서 디버깅의 도움을 많이 받았다.
코드
# 21.03.16 # 백준 10828 번 풀이 # if ~ in 을 command[0] == 해당값 으로 수정하면 좀 더 깔끔한 코드가 나올 것 import sys case = int(input()) stack = [] for i in range(case): command = list(sys.stdin.readline().split()) if "push" in command: stack.append(command[1]) elif "pop" in command: if stack: print(stack.pop()) else: print(-1) elif "size" in command: print(len(stack)) elif "empty" in command: if not stack: print(1) else: print(0) # 스택의 가장 위에 있는 정수를 출력한다. 만약 스택에 들어있는 정수가 없는 경우에는 -1을 출력한다. elif "top" in command: if not stack: print('-1') else: print(stack[-1])
'TodayILearned > 알고리즘' 카테고리의 다른 글
프로그래머스 최댓값과 최솟값 (0) 2021.06.14 프로그래머스 짝지어제거하기 (0) 2021.06.14 [알고리즘] 1436 파이썬 (0) 2021.03.18 [알고리즘] 백준 1260 파이썬 (0) 2021.03.18 [알고리즘] 백준 1011 (0) 2021.03.13