码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode] 122. 买卖股票的最佳时机 II

时间:2020-06-18 19:30:19      阅读:40      评论:0      收藏:0      [点我收藏+]

标签:load   alt   i++   技术   http   img   int   买卖   loading   

技术图片

class Solution {
    public int maxProfit(int[] prices) {
        int profit=0;
        for(int i=1;i<prices.length;i++){
            int tmp=prices[i]-prices[i-1];
            if(tmp>0) profit+=tmp;
        }
        return profit;
    }
}

技术图片

 

[LeetCode] 122. 买卖股票的最佳时机 II

标签:load   alt   i++   技术   http   img   int   买卖   loading   

原文地址:https://www.cnblogs.com/doyi111/p/13159023.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!