Problem Statement
Pattern:
Solution
public int maxProfit (int[] prices){
int max_price = Integer.MIN_VALUE, maxProfit = 0;
for (int i = prices.length-1; i >= 0 ; i--) {
max_price = Math.max(max_price, prices[i]);
maxProfit = Math.max(maxProfit , max_price - prices[i]);
}
return maxProfit;
}
public int maxProfit (int[] prices){
int min = Integer.MAX_VALUE, maxProfit = Integer.MIN_VALUE;
for (int num : prices) {
// update min stock price so far
min = Math.min(num, min);
// max (max so far, profit if sold today)
maxProfit = Math.max(maxProfit, num - min);
}
return maxProfit;
}
Both are same, do it forwards or backwards