You are given an array prices
where prices[i]
is the price of a given stock on the ith
day.
You want to maximize your profit by choosing a single day to buy one stock and choosing a different day in the future to sell that stock.
Return the maximum profit you can achieve from this transaction. If you cannot achieve any profit, return 0
.
Example 1:
Input: prices = [7,1,5,3,6,4] Output: 5 Explanation: Buy on day 2 (price = 1) and sell on day 5 (price = 6), profit = 6-1 = 5. Note that buying on day 2 and selling on day 1 is not allowed because you must buy before you sell.
Example 2:
Input: prices = [7,6,4,3,1] Output: 0 Explanation: In this case, no transactions are done and the max profit = 0.
Constraints:
1 <= prices.length <= 105
0 <= prices[i] <= 104
min은 최소값, cur은 현재 이익, max는 최대이익으로 잡고 시작한다.
시작점은 min은 prices[0], max는 0이 될 것이다.
for 반복문 안에서 min 과 prices[i]를 비교하면서 min값 보다 배열 현재값이 작으면 prices[i]를 min
에 대입한다. 반복문의 경우 min이 이미 prices[0]이므로 시작점(i)은 1
이 될 것이다. 만약 min보다 prices[i]가 크다면
이익을 계산해봐야 하므로 현재이익을 나타내는 변수 cur
에 prices[i]에서 min을 뺀 값
을 대입한다.
우리는 최대 이익을 구해야 하므로 최대이익 max와 현재이익 cur을 비교해 max 보다 cur이 클 시 cur값을 max에
덮어씌운다.
/**
* @param {number[]} prices
* @return {number}
*/
var maxProfit = function(prices) {
let min = prices[0];
let max = 0;
let cur;
for(let i=1; i<prices.length; i++) {
if(min>prices[i]) {
min = prices[i];
}else {
cur = prices[i]-min;
if(cur>max) {
max=cur;
}
}
}
return max;
};