[코딜리티] MaxProfit
나의 풀이
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;
}
결과
Author And Source
이 문제에 관하여([코딜리티] MaxProfit), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@j03y14/코딜리티-MaxProfit저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)