欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

买卖股票的最佳时机 II

程序员文章站 2022-06-17 19:46:46
...

买卖股票的最佳时机 IIPython

class Solution(object):
    def maxProfit(self, prices):
        """
        :type prices: List[int]
        :rtype: int
        """
        ans = 0
        for i in range(1, len(prices)):
            price = - prices[i-1] + prices[i]
            if price > 0:
                ans += price
        return ans

买卖股票的最佳时机 II