728x90
from collections import deque
def solution(heights):
answer = []
heights=deque(heights)
len_h=len(heights)
for i in range(len_h):
tmp=heights.pop()
cnt=0
ind=0
for j in heights:
cnt+=1
if tmp: ind=cnt
answer.insert(0,ind)
return answer
'STUDY > Algorithm' 카테고리의 다른 글
[프로그래머스] LEVEL2 조이스틱,python3, 탐욕법(greedy) (0) | 2019.11.04 |
---|---|
[프로그래머스] LEVEL2 소수 찾기, python3,완전탐색 (0) | 2019.11.04 |
[프로그래머스] LEVEL2 주식가격,python3,스택/큐 (0) | 2019.10.29 |
[프로그래머스] LEVEL2 124 나라의 숫자,python3 (0) | 2019.10.28 |
[프로그래머스] LEVEL2 프린터, python3, 스택/큐 (0) | 2019.10.28 |