题解 | #买卖股票的最好时机(一)#
买卖股票的最好时机(一)
http://www.nowcoder.com/practice/64b4262d4e6d4f6181cd45446a5821ec
import java.util.*;
public class Solution {
/**
*
* @param prices int整型一维数组
* @return int整型
*/
public int maxProfit (int[] prices) {
// write code here
int N = prices.length;
int min = prices[0];
int maxVal = 0;
for(int i = 1; i < N; i++) {
maxVal = Math.max(maxVal, prices[i] - min);
if(prices[i] < min) {
min = prices[i];
}
}
return maxVal;
}
}
SHEIN希音公司福利 284人发布
查看15道真题和解析