알고리즘/programmers

[ 프로그래머스 / 파이썬 ] 주식가격

jungeun960 2021. 3. 31. 16:57

프로그래머스 - 스택/큐

# 주식가격 (Level2)

  • 주식가격이 떨어졌을 때도 시간이 지났기 때문에 시간을 더해야한다. -> 예시의 prices가 3일 경우
def solution(prices):
    answer = [0] *len(prices) #prices값과 동일한 길이의 리스트로 초기화
    for i in range(len(prices)):
        for j in range(i+1,len(prices)):
            if prices[i] > prices[j]:
                answer[i] +=1
                break
            else:
                answer[i] +=1
            print(answer)
                
    return answer

 

반응형