LEVEL2_프로그래머스_주식가격

Written on July 22, 2019

문제

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

풀이

def solution(prices):
    answer = []
    index=0
    for price in prices:
        price_array = prices[index+1:]
        less_than = list(filter(lambda x: x < price, price_array))
        if(less_than == []):
            answer.append(len(prices) - index - 1)
        else:
            first_index = price_array.index(less_than[0])
            answer.append(first_index + 1)
        index = index+1
    return answer


이 문제는 효율성에서 통과하지 못했다. Stack을 사용해서 다시 풀어봐야 겠다!


문제바로가기

주식가격

👩🏻‍💻 배우는 것을 즐기는 프론트엔드 개발자 입니다
부족한 블로그에 방문해 주셔서 감사합니다 🙇🏻‍♀️

in the process of becoming the best version of myself