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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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

  1. https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/description/
如果有收获,可以请我喝杯咖啡!