Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions best-time-to-buy-and-sell-stock/kimyoung.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/**
* @param {number[]} prices
* @return {number}
*/
var maxProfit = function(prices) {
let left = 0, right = 1;
let max = 0;

while(right < prices.length) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

비슷한 풀이여도 left, right로 두고 반복문을 진행하니까

문제를 새로운 이미지로 떠올리게 되네요 :D

if(prices[right] < prices[left]) {
left = right;
} else {
max = Math.max(max, prices[right] - prices[left]);
}
right++;
}
return max;
};

// time - O(n) iterate through prices once
// space - O(1)