[CodeKata] -17

김가람휘·2022년 3월 7일
0

CodeKata

목록 보기
17/28

def maxProfit(prices):
    maxprofit = 0
    length = len(prices)
    
    for i in range(length):
        for j in range(i+1, length):
            if prices[i] < prices[j]:
                maxprofit = max(maxprofit, prices[j] - prices[i])
    
    return maxprofit
def maxProfit(prices):
    min_num = prices.index(min(prices)) # 가장 작은 숫자의 인덱스를 찾는다
    my_list = prices[min_num:] # 가장 작은 숫자부터 인덱스를 끊어서 새로 생성
    return max(my_list) - min(prices)

0개의 댓글