121. Best Time to Buy and Sell Stock
202401162209
tags: #two-pointers
var maxProfit = function(prices) {
let res = 0;
let min = prices[0];
for (let i = 1; i < prices.length; i++) {
res = Math.max(res, prices[i] - min);
min = Math.min(min, prices[i]);
}
return res;
};
Reference
https://leetcode.com/problems/best-time-to-buy-and-sell-stock/