解题思路
由于可以交易任意多次
先计算一天的利润
然后将大于0的利润相加即可
122. 买卖股票的最佳时机 II
代码
class Solution(object):
def maxProfit(self, prices):
"""
:type prices: List[int]
:rtype: int
"""
profits = [x-y for x, y in zip(prices[1:], prices)]
return sum(p for p in profits if p>0)
效果图
网友评论