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

This one’s pretty simple. Because we have no restriction on buying and selling, we can just always take a buy/sell for two consecutive days if it nets us a positive profit.

def maxProfit(self, prices: List[int]) -> int:
	profit = 0
	for p1, p2 in zip(prices[:-1], prices[1:]):
		profit += max(0, p2-p1)
	return profit