728x90
def solution(priorities, location):
answer = 0
while priorities!=[]:
max_pr=max(priorities)
ind_zr=priorities.pop(0)
if max_pr==ind_zr:
answer+=1
if location==0:
break
else:
location -=1
else:
priorities.append(ind_zr)
if location==0:
location=len(priorities)-1
else:
location-=1
return answer
'STUDY > Algorithm' 카테고리의 다른 글
[프로그래머스] LEVEL2 주식가격,python3,스택/큐 (0) | 2019.10.29 |
---|---|
[프로그래머스] LEVEL2 124 나라의 숫자,python3 (0) | 2019.10.28 |
[프로그래머스] LEVEL2 쇠막대기, python3, 스택/큐 (0) | 2019.10.28 |
[프로그래머스] LEVEL2 기능개발, python3, 스택/큐 (0) | 2019.10.22 |
[프로그래머스] LEVEL2 다리를 지나는 트럭,python3, 스택/큐 (0) | 2019.10.22 |