「每日LeetCode」2021年1月31日

本文最后更新于:2023年3月19日 晚上

Lt485. 最大连续 1 的个数

485. 最大连续 1 的个数

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

1
2
3
输入: [1,1,0,1,1,1]
输出: 3
解释: 开头的两位和最后的三位都是连续1,所以最大连续1的个数是 3.

注意:

  • 输入的数组只包含 01
  • 输入数组的长度是正整数,且不超过 10,000。

思路

使用一个计数和最大连续个数计数即可

解答

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
* @param {number[]} nums
* @return {number}
*/
var findMaxConsecutiveOnes = function (nums) {
let count = 0;
let max = 0;
for (const num of nums) {
if (num === 1) count++;
else {
max = Math.max(max, count);
count = 0;
}
}
return Math.max(max, count);
};