프로그래머스 - 스택/큐
- 주식가격이 떨어졌을 때도 시간이 지났기 때문에 시간을 더해야한다. -> 예시의 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
반응형
'알고리즘 > programmers' 카테고리의 다른 글
20210408_코테공부 (0) | 2021.04.08 |
---|---|
20210407_코테공부 (0) | 2021.04.07 |
20210319_코테공부 (0) | 2021.03.19 |
20210316_코테공부 (0) | 2021.03.16 |
20210315_코테공부 (0) | 2021.03.15 |