Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 407 Bytes

0485. 最大连续 1 的个数.md

File metadata and controls

25 lines (22 loc) · 407 Bytes

485. 最大连续 1 的个数

给定一个二进制数组, 计算其中最大连续 1 的个数。


/**
 * @param {number[]} nums
 * @return {number}
 */
var findMaxConsecutiveOnes = function(nums) {
  var current = 0
  var max = 0
  nums.forEach(i => {
    if (i === 0) {
      current = 0
    } else {
      current ++
      if (current > max) max = current
    }
  })
  return max
};