


1. Not allowed to engage in more than 1 transaction at a time, which means if you have bought stock then you can buy another stock before selling the first stock.
2. If you bought a stock at ‘X’ price and sold it at ‘Y’ price then the profits ‘Y - X’.
It is not compulsory to perform an exact '2' transaction.
The first line of input contains an integer 'T' denoting the number of test cases.
The first line of each test case contains a single integer 'N', 'N' denotes the length of array ‘prices’.
The second line of each test case contains an 'N' space-separated integers, in which every integer denotes an element of the array "prices".
For each test case, you need to print the maximum profit made by selling the stocks.
You do not need to print anything; it has already been taken care of.
1 <= T <= 50
1 <= N <= 10^4
0 <= A[i] <= 10^9
Time limit: 1 second
The basic idea is that, try all possible transactions, means move to every index and try to perform one transaction before the current index and one after the current index. For all the possibilities choose maximum.
The basic idea is that, create two “frontArr” and “backArr”. In “frontArr[i]”, we store if we sold a stock at ‘ith’ day or before ‘ith’ day then what will be the maximum profit. In ‘backArr[i]’, we store if we buy and sell a stock after ‘ith’ day then what will be the maximum profit. Then for every ‘i’ check the maximum value of "frontArr[i] + backArr[i + 1]".