列表

详情


485. 最大连续 1 的个数

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

 

示例 1:

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

示例 2:

输入:nums = [1,0,1,1,0,1]
输出:2

 

提示:

相似题目

最大连续1的个数 II

最大连续1的个数 III

原站题解

去查看

上次编辑到这里,代码来自缓存 点击恢复默认模板
class Solution { public: int findMaxConsecutiveOnes(vector<int>& nums) { } };

python3 解法, 执行用时: 152 ms, 内存消耗: N/A, 提交时间: 2018-08-24 01:33:24

class Solution:
    def findMaxConsecutiveOnes(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        if len(nums) == 0:
            return 0
        a = ''.join([str(i) for i in nums])
        k = a.split('0')
        return len(max(k))
            
                
        

上一题