122. Best Time to Buy and Sell Stock II
Easy
Say you have an array for which the i th element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may complete as many transactions as you like (i.e., buy one and sell one share of the stock multiple times). Note: You may not engage in multiple transactions at the same time (i.e., you must sell the stock before you buy again).
😇 Solution
class Solution:
def maxProfit(self, prices: List[int]) -> int:
max_profit = 0
for i in range(1,len(prices)):
if prices[i] > prices[i-1]:
max_profit += prices[i] - prices[i-1]
return max_profit
Last updated
Was this helpful?