easy
arrays
dynamic-programming
You are given an array prices where prices[i] is the price of a given stock on day i.
You want to maximize your profit by choosing a single day to buy one stock and a different day in the future to sell it. Return the maximum profit you can achieve. If no profit is possible, return 0.
Examples
Example 1
Input: prices = [7,1,5,3,6,4]
Output: 5
Example 2
Input: prices = [7,6,4,3,1]
Output: 0
Example 3
Input: prices = [1,2]
Output: 1
Running will execute all 3 cases.