首页 > 其他 > 详细

LeetCode(485. 最大连续1的个数)

时间:2019-01-23 01:13:04      阅读:204      评论:0      收藏:0      [点我收藏+]

问题描述

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

示例 1:

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

注意:

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

解决方案

class Solution:
    def findMaxConsecutiveOnes(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        count = 0
        max_count =0
        for i in nums:
            if i == 1:
                count += 1
            else:
                max_count = max(count,max_count)
                count = 0
        return max(count,max_count)

LeetCode(485. 最大连续1的个数)

原文:https://www.cnblogs.com/huang-yc/p/10306760.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!