485 Max Consecutive Ones
Input:
[1,1,0,1,1,1]
Output:
3
Explanation:
The first two digits or the last three digits are consecutive 1s.
The maximum number of consecutive 1s is 3.class Solution:
def findMaxConsecutiveOnes(self, nums):
"""
:type nums: List[int]
:rtype: int
"""
cur_max = 0
maxx = 0
for num in nums:
if num:
cur_max += num
maxx = max(cur_max, maxx)
else:
cur_max = 0
return maxxLast updated