본문 바로가기
Programmers (코딩 테스트 연습)

주식가격 (스택/큐, Level 2)

by xangmin 2020. 12. 29.
반응형

문제 설명

 초 단위로 기록된 주식가격이 담긴 배열 prices가 매개변수로 주어질 때, 가격이 떨어지지 않은 기간은 몇 초인지를 return 하도록 solution 함수를 완성하세요.

 

solution.py

def solution(prices):
    answer = []
    for i in range(len(prices)):
        count = 0
        for j in range(i+1, len(prices)):
            count += 1
            if prices[i] > prices[j]:
                break
        answer.append(count)
    return answer

 

반응형

댓글