Problem Description
Say you have an array, A, 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 as many transactions as you like (i.e., buy one and sell one share of the stock multiple times).
However, you may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).
Input 1: A = [1, 2, 3] Input 2: A = [5, 2, 10]
Output 1: 2 Output 2: 8
Explanation 1: => Buy a stock on day 0. => Sell the stock on day 1. (Profit +1) => Buy a stock on day 1. => Sell the stock on day 2. (Profit +1)
Overall Profit = 2Explanation 2: => Buy a stock on day 1. => Sell the stock on on day 2. (Profit +8)
Overall profit = 8
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.