Java | Leetcode Java题解之第122题买卖股票的最佳时机II

Java | Leetcode Java题解之第122题买卖股票的最佳时机II

码农世界 2024-06-05 前端 113 次浏览 0个评论

题目:

题解:

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

转载请注明来自码农世界,本文标题:《Java | Leetcode Java题解之第122题买卖股票的最佳时机II》

百度分享代码,如果开启HTTPS请参考李洋个人博客
每一天,每一秒,你所做的决定都会改变你的人生!

发表评论

快捷回复:

评论列表 (暂无评论,113人围观)参与讨论

还没有评论,来说两句吧...

Top