Sunny-117/js-challenges

最大子数组和

Pcjmy opened this issue · 1 comments

Pcjmy commented
最大子数组和

var maxSubArray = function(nums) {
    let dp = [] ;
    dp[0]=nums[0]
    let max = nums[0];
   for(let i =1; i<nums.length ; i++){
        dp[i]=Math.max(dp[i-1]+nums[i],nums[i])
        max=Math.max(dp[i],max)
    }
    return max;
};