​LeetCode刷题实战485:最大连续 1 的个数

今天和大家聊的问题叫做 最大连续 1 的个数,我们先来看题面:https://leetcode-cn.com/problems/max-consecutive-ones/

Given a binary array nums, return the maximum number of consecutive 1's in the array. 

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

示例                         

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

提示:
输入的数组只包含 0 和 1 。
输入数组的长度是正整数,且不超过 10,000。

解题


这是一道简单题,直接看代码就行了 。

class Solution {
    public int findMaxConsecutiveOnes(int[] nums) {
        int max = 0;
        int count = 0;
        for (int i = 0; i < nums.length; i++) {
            if (nums[i] == 1) count++;
            else {
                max = Math.max(max, count);
                count = 0;
            }
        }
        return Math.max(max,count);
    }
}

好了,今天的文章就到这里,如果觉得有所收获,请顺手点个在看或者转发吧,你们的支持是我最大的动力 。

上一篇:​LeetCode刷题实战511:游戏玩法分析 I


下一篇:​LeetCode刷题实战463:岛屿的周长