Home > Data Structures and Algorithms Questions > Best Time to Buy and Sell Stock II
Here's a code snippet find Best Time to Buy and Sell Stock II
public int maxProfit(int[] prices) {
int n=prices.length;
int total=0;
for(int i=0; i < n-1; i++)
{
if(prices[i] < prices[i+1]){
total= total + prices[i+1]-prices[i];
}
}
return total;
}