用那种语言做网站比较好,福建seo关键词优化外包,社群运营的经典案例,全球软件公司排名给你一个整数数组 prices #xff0c;其中 prices[i] 表示某支股票第 i 天的价格。 在每一天#xff0c;你可以决定是否购买和/或出售股票。你在任何时候 最多 只能持有 一股 股票。你也可以先购买#xff0c;然后在 同一天 出售。 返回 你能获得的 最大 利润 。 AC代码
水… 给你一个整数数组 prices 其中 prices[i] 表示某支股票第 i 天的价格。 在每一天你可以决定是否购买和/或出售股票。你在任何时候 最多 只能持有 一股 股票。你也可以先购买然后在 同一天 出售。 返回 你能获得的 最大 利润 。 AC代码
水题
class Solution:def maxProfit(self, prices: List[int]) - int:if len(prices) 2:return 0res 0for i in range(1, len(prices)):res max(prices[i] - prices[i - 1], 0)return res