买卖股票的最佳时期II
1
2
3
4
5
6
7
8
9
10
func maxProfit(prices []int) int {
var income int
for k := 0; (k + 1) < len(prices); k++ {
//如果涨了,计算利润
if prices[k+1] > prices[k] {
income += prices[k+1] - prices[k]
}
}
return income
}
文章作者: Luis
文章链接: https://warrest.github.io/2020/10/26/%E4%B9%B0%E5%8D%96%E8%82%A1%E7%A5%A8%E7%9A%84%E6%9C%80%E4%BD%B3%E6%97%B6%E6%9C%BA/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Luis's Blog