题目链接
原题链接
中文原题链接
解题思路
- 1,暴力求解,直接求出买入和买出的最大值返回即可。
解决方案
1 2 3 4 5 6 7 8 9 10 11
| func maxProfit(prices []int) int { maxProfit := 0 for i := 0; i < len(prices); i++ { for j := i + 1; j < len(prices); j++ { if (prices[j] - prices[i] > maxProfit) { maxProfit = prices[j] - prices[i] } } } return maxProfit }
|
如果本篇文章对你有帮助,可以给作者加个鸡腿~(*^__^*),感谢鼓励与支持!
微信支付
支付宝