从leetcode:请求旧空间中的GC分配失败?

时间:2018-05-15 07:36:52

标签: javascript algorithm

The original address

这是我的代码:



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;
&#13;
&#13;

当我在chrome控制台中调用它时,或者只需单击&#34;运行代码&#34;然后在leetcode中运行它。按钮,但是当我在leetcode中提交代码时出错了。

错误消息:

enter image description here

我试图在leetcode论坛上提问,但过去几天没有申请。

0 个答案:

没有答案