腾讯五十题 No.26 买卖股票的最佳时机

题目链接

class Solution {
    public int maxProfit(int[] prices) {
        if(prices.length <= 1)
            return 0;
        int low = prices[0],res = 0;
        for(int i=1;i<prices.length;i++){
            low = Math.min(low,prices[i]);
            res = Math.max(res,prices[i] - low);
        }
        return res;
    }
}

posted @   蹇爱黄  阅读(19)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报
· 什么是nginx的强缓存和协商缓存
· 一文读懂知识蒸馏
· Manus爆火,是硬核还是营销?
点击右上角即可分享
微信分享提示