Say you have an array for which the ith element is the price of a given stock on day i.
If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock), design an algorithm to find the maximum profit.
Have you met this question in a real interview?
Yes
Example
Given array [3,2,3,1,2]
, return 1
.
时间: 2024-10-27 08:37:52