728x90
반응형
def solution(prices):
answer = [0]* len(prices)
for i in range( len(prices)-1 ):
cnt = 1
for j in range( i+1, len(prices) ):
if prices[i] > prices[j] :
answer[i] = j -i
break
if answer[i] == 0 :
answer[i] = len(prices) - i -1
return answer
728x90
반응형
'프로그래머스 > Level 2' 카테고리의 다른 글
해시 - 전화번호 목록 (0) | 2020.10.14 |
---|---|
스택/큐 - 프린터 (0) | 2020.10.13 |
최댓값과 최솟값 (0) | 2020.10.13 |
큰 수 만들기 * (0) | 2020.10.09 |
2 x n 타일링 (0) | 2020.10.09 |