티스토리 뷰
programmers.co.kr/learn/courses/30/lessons/42587
def solution(priorities, location):
answer = 0
priority = []
for i in range(len(priorities)):
priority.append((priorities[i], i))
while(priority):
max_p = max(priority)
p = priority.pop(0)
if p[0] != max_p[0]:
priority.append(p)
else:
answer += 1
if p[1] == location:
break
return answer
'Algorithm > Programmers' 카테고리의 다른 글
[프로그래머스] 다리를 지나는 트럭 - Python (0) | 2021.03.25 |
---|---|
[프로그래머스] 주식가격 - Python (0) | 2021.03.25 |
[프로그래머스] 크레인 인형뽑기 게임 - Python (0) | 2021.03.24 |
[프로그래머스] 정수 삼각형 - Python (0) | 2021.03.12 |
[프로그래머스] 도둑질 - Python (0) | 2021.03.12 |