Best time to buy and sell stock

int maxProfit(int price[], int n)
{
int profit = 0;

for(int i = 1; i < n; i++)
{
	if(price[i] > price[i - 1])
		profit += price[i] - price[i -1];
}

return profit;

}

Here is my code please tell where i am going wrong...its showing wrong output

Comments (0)