from collections import deque # deque : 앞과 뒤에서 데이터를 처리할 수 있는 양방향 자료형 # 다이얼 형태로 바꿔준다고 연상을 해보자. def solution(prices): answer = [] d_prices = deque(prices) # 데크형태로 지정 while len(d_prices) != 0: count = 0 first = d_prices.popleft() # pop(0)과 동일 for p in d_prices: count += 1 if p < first: break answer.append(count) return answer
💡 check point
다시 볼 것