LeetCode(力扣)122. 买卖股票的最佳时机 II

LeetCode122. 买卖股票的最佳时机 II

    • 题目链接
    • 代码

题目链接

https://leetcode.cn/problems/best-time-to-buy-and-sell-stock-ii/
LeetCode(力扣)122. 买卖股票的最佳时机 II_第1张图片

代码

class Solution:
    def maxProfit(self, prices: List[int]) -> int:
        result = 0
        for i in range(1, len(prices)):
            result += max((prices[i] - prices[i - 1]), 0)
        return result

你可能感兴趣的:(leetcode,算法,职场和发展)