Hard
Say you have an array for which the ith element is the price of a given stock on day i.
Design an algorithm to find the maximum profit. You may complete at most two transactions.
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:
1 | Input: [3,3,5,0,0,3,1,4] |
Example 2:
1 | Input: [1,2,3,4,5] |
Example 3:
1 | Input: [7,6,4,3,1] |