这是我的代码:
var maxProfit = function(prices) {
var tmp = [];
for(let i = 0;i<prices.length;i++){
for(let j =i+1;j<prices.length;j++){
tmp.push(prices[j]-prices[i]);
}
}
var maxProfit = Math.max.apply(this, tmp);
if(maxProfit <=0) {return 0;}
return maxProfit;
};
maxProfit([7,1,5,3,6,4]);//test
&#13;
当我在chrome控制台中调用它时,或者只需单击&#34;运行代码&#34;然后在leetcode中运行它。按钮,但是当我在leetcode中提交代码时出错了。
错误消息:
我试图在leetcode论坛上提问,但过去几天没有申请。