愤怒大侠

文章
4
资源
0
加入时间
2年10月18天

python maxProfit 最佳买股票时机

class Solution: def maxProfit(self,prices): res = 0 for i in range(len(prices)): for j in range(i,len(prices)-i): if prices[j]>prices[i]: res=prices[j]-prices[i] return res.