1. 程式人生 > >Leetcode 122. Best Time to Buy and Sell Stock II

Leetcode 122. Best Time to Buy and Sell Stock II

文章作者:Tyan
部落格:noahsnail.com  |  CSDN  |  簡書

1. Description

Best Time to Buy and Sell Stock II

2. Solution

class Solution {
public:
    int maxProfit(vector<int>& prices) {
        if(prices.size() == 0) {
            return 0;
        }
        int profit = 0;
        for(int i = 1; i < prices.size(); i++) {
            int diff = prices[i] - prices[i - 1];
            if( diff > 0) {
                profit += diff;
            }
        }
        return profit;
    }
};

Reference