PROBLEM DESCRIPTION
You are given an integer array prices where prices[i] is the price of a given stock on the ith day.
On each day, you may decide to buy and/or sell the stock. You can only hold at most one share of the stock at any time. However, you can buy it then immediately sell it on the same day.
Find and return the maximum profit you can achieve.
SOLUTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class Solution {
public int maxProfit(int[] prices) {
int total=0;
for(int i=1; i<prices.length; i++){
//whenever there is an increase in price, take the profit
//this will be equal to, if you have bought at the lowest (valley) and sold at the next heighest price (peak)
if(prices[i] > prices[i-1]){
total += (prices[i] - prices[i-1]);
}
}
return total;
}
}