牛客题霸 NC7 买卖股票的最好时机

Posted Starzkg

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了牛客题霸 NC7 买卖股票的最好时机相关的知识,希望对你有一定的参考价值。

https://www.nowcoder.com/practice/64b4262d4e6d4f6181cd45446a5821ec

解决方案

Go

func maxProfit(prices []int) int {
	// write code here
	var min int = 1e9
	max := 0
	for _, price := range prices {
		if max < price-min {
			max = price - min
		}
		if min > price {
			min = price
		}
	}
	return max
}


参考文章

以上是关于牛客题霸 NC7 买卖股票的最好时机的主要内容,如果未能解决你的问题,请参考以下文章

牛客题霸-SQL篇——10~20题

牛客题霸——二分查找(Javascript)

牛客题霸-SQL篇——1~10题

牛客题霸 NC10 大数乘法

牛客题霸 [分糖果问题] C++题解/答案

牛客题霸 NC26 括号生成