代码随想录算法训练营第三十二天|● 122.买卖股票的最佳时机II ● 55. 跳跃游戏 ● 45.跳跃游戏II

仅做学习笔记,详细请访问代码随想录

● 122.买卖股票的最佳时机II
● 55. 跳跃游戏
● 45.跳跃游戏II

● 122.买卖股票的最佳时机II

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

你可能感兴趣的:(letcode,算法,游戏,数据结构)