题解 | #买卖股票的最好时机#

买卖股票的最好时机

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

class Solution:
def maxProfit(self , prices ):
# write code here
maxProfit = 0
n = len(prices)
for i in range(n-1):
for j in range(i+1,n):
profit = (prices[j]-prices[i])
if maxProfit < profit:
maxProfit = profit
return maxProfit

全部评论

相关推荐

03-19 17:49
运营
牛客327038019号:你把那贼低的gpa写上去干嘛
点赞 评论 收藏
分享
vip牛牛:测试吧,开发现在至少212
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务