[코딜리티] MaxProfit

박재윤·2021년 1월 6일
0

코테준비

목록 보기
15/25

나의 풀이

function solution(A) {
    // write your code in JavaScript (Node.js 8.9.4)
    let start = 0;
    let end = 0;
    
    let max =0;

    while(end < A.length) {
        const profit = A[end] - A[start];

        if (profit < 0) start = end;
        if (max < profit) max = profit;

        end++;
    }

    return max;
}

결과

0개의 댓글

관련 채용 정보