https://programmers.co.kr/learn/courses/30/lessons/42628
def solution(operations):
answer = []
test=[]
for _str in operations:
_str=_str.split()
if _str[0]=='I':
test.append(int(_str[1]))
test.sort()
else:
if test:
if _str[1]=='1':
test.pop(-1)
else:
test.pop(0)
if test:
return [test[-1],test[0]]
return [0,0]
'Programming > Programmers' 카테고리의 다른 글
[프로그래머스] 등굣길(Python) (0) | 2021.08.12 |
---|---|
[프로그래머스] 2 x n 타일링(Python) (0) | 2021.08.12 |
[프로그래머스] 정수삼각형(Python) (0) | 2021.08.12 |
[프로그래머스] 디스크 컨트롤러(Python) (0) | 2021.08.12 |
[프로그래머스] N으로 표현(Python) (0) | 2021.08.12 |
댓글