LeetCode-122.买卖股票的最佳时机II
题目描述
给你一个整数数组 prices
,其中 prices[i]
表示某支股票第 i
天的价格。
在每一天,你可以决定是否购买和/或出售股票。你在任何时候 最多 只能持有 一股 股票。你也可以先购买,然后在 同一天 出售。
返回 你能获得的 最大 利润 。
示例
1 | 输入:prices = [7,1,5,3,6,4] |
1 | 输入:prices = [7,6,4,3,1] |
提示:
1 <= prices.length <= 3 * 104
0 <= prices[i] <= 104
题解
思路:如果后一天比前一天价格高,则累加这个利润
1 | func maxProfitII(_ prices: [Int]) -> Int { |