122. Best Time to Buy and Sell Stock II
Say you have an array for which thei_thelement 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).
Example 1:
Example 2:
Example 3:
Thoughts:
Greedy buy today's stock if tomorrow it will increase its price
Code
Code: One line
Last updated
Was this helpful?