// 高频交易,只要有钱赚,就卖出。。。。 func maxProfit(prices []int) (res int) { for i := 1; i < len(prices); i++{ if prices[i] - prices[i-1] > 0 { res += prices[i] - prices[i-1] } } return }