LeetCode 122 Best Time to Buy and Sell Stock II (Python)

Posted by 小明MaxMing on April 26, 2020

题目

Say you have an array prices for which the ith element is the price of a given stock on day i.

Design an algorithm to find the maximum profit. You may complete as many transactions as you like (i.e., buy one and sell one share of the stock multiple times).

Note: You may not engage in multiple transactions at the same time (i.e., you must sell the stock before you buy again).

解题思路

贪心,如果某天的股价比前一天的高,那么就在前一天买入,并在当天卖出,不需要找每次的高点和低点

代码

class Solution:
    def maxProfit(self, prices: List[int]) -> int:
        res = 0
        for i in range(1, len(prices)):
            if prices[i] > prices[i - 1]:
                res += prices[i] - prices[i - 1]
        return res

视频讲解 YouTube<--欢迎点击订阅

视频讲解 bilibili<--欢迎点击订阅