Given an array of unique randomly sorted integers and a number it is required to find the count of the unordered pairs in the array that have a difference of . In the text file, how many unorederd pairs of numbers have a difference of 70.
Details and Assumptions
As an example in the array [2, 8, 4, 3, 1]
with is ....(2,4)
and (3,1)
.
The various stock prices of an item during various points throughout the day are given in this text. What is the maximum profit you can get if you are allowed to perform at most two buys and at most two sells?
Details and Assumptions
You can only buy another stock if you have sold the one you bought previously.
As an explicit example if the stock prices are [2, 4, 5, 6, 9, 5, 4, 3, 8]
you buy at and sell at , and you buy another stock at and sell at . for a max profit of
[8, 7, 5, 4, 3, 2]
there will be no profit, as the value of the stock is decreasing with time.
The stock prices are sequential with respect to time, so that you can only buy or sell only the stock at hand.