This problem was recently asked by Apple.
You are given an array. Each element represents the price of a stock on that particular day.
Calculate and return the maximum profit you can make from buying and selling that stock only once.
Input: (9, 11, 8, 5, 7, 10)
Output: 5 (Buy on "5" and sell on "10")