[프로그래머스] 스택/큐 - 주식가격(Python)

수경·2022년 1월 28일
0

problem solving

목록 보기
42/174

코드

def solution(prices):
    answer = []
    p_len = len(prices)
    for i in range(p_len):
        p = prices[i]
        cnt = 0
        for j in range(i + 1, p_len):
            cnt += 1
            if p > prices[j]:
                break
        answer.append(cnt)
    return answer
profile
어쩌다보니 tmi뿐인 블로그😎

0개의 댓글