[LeetCode]题解(python):122-Best Time to Buy and Sell Stock II

Posted Ry_Chen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode]题解(python):122-Best Time to Buy and Sell Stock II相关的知识,希望对你有一定的参考价值。

题目来源:

  https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/


 

题意分析:

  和上题类似,给定array,代表第i天物品i的价格。如果可以交易无数次(手上有物品不能买),问最高利润。


 

题目思路:

  记录当前最小值,如果遇到array[i]  < min,那么加上当前的最大值;更新min。


 

代码(python):

  

技术分享
class Solution(object):
    def maxProfit(self, prices):
        """
        :type prices: List[int]
        :rtype: int
        """
        if len(prices) == 0:
            return 0
        ans,mins = 0,prices[0]
        for i in prices:
            if i > mins:
                ans += i - mins
            mins = i
        return ans
View Code

 

以上是关于[LeetCode]题解(python):122-Best Time to Buy and Sell Stock II的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 122. 买卖股票的最佳时机 IIc++/java详细题解

《LeetCode之每日一题》:122.字符串相加

LeetCode第122题—买卖股票的最佳时机II—Python实现

Leetcode刷题Python122.买卖股票的最佳时机 II

LeetCode ---- 买卖股票系列问题思路与题解

LeetCode ---- 买卖股票系列问题思路与题解