LeetCode122 买卖股票的最佳时机 II(贪心)


LeetCode122 买卖股票的最佳时机 II

贪心计算爬峰收益

class Solution:
    def maxProfit(self, prices: List[int]) -> int:

        ans, l = 0, len(prices)
        for i in range(1, l): ans += max(0, prices[i] - prices[i - 1])

        return ans

原创文章,作者:jamestackk,如若转载,请注明出处:https://blog.ytso.com/270706.html

(0)
上一篇 2022年6月29日
下一篇 2022年6月29日

相关推荐

发表回复

登录后才能评论