Problem Description
Input 1:
A = [1, 2, 1, 2]
Input 2:
A = [7, 2, 4, 8, 7]
Output 1:
2
Output 2:
6
Explanation 1:
Day 0 : Buy
Day 1 : Sell
Day 2 : Buy
Day 3 : Sell
Explanation 2:
Day 1 : Buy
Day 3 : Sell
NOTE: You only need to implement the given function. Do not read input, instead use the arguments to the function. Do not print the output, instead return values as specified. Still have a question? Checkout Sample Codes for more details.