LeetCode刷题笔记(121,买卖股票的最佳时机,Easy)

class Solution {
    public int maxProfit(int[] prices) {
        int minstake = Integer.MAX_VALUE;
        int maxprofit = 0;
        for(int i : prices){
            if(i < minstake){
                minstake = i;
            }
            maxprofit = Math.max(maxprofit,i - minstake);
        }
        return maxprofit;
    }
}

 

你可能感兴趣的:(LeetCode刷题笔记(121,买卖股票的最佳时机,Easy))