Given a binary array, find the maximum number of consecutive 1s in this array.
Example 1:
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(object):
def findMaxConsecutiveOnes(self, nums):
"""
:type nums: List[int]
:rtype: int
"""
if not nums:
return 0
maxlen=0
templen=0
for i in range(0,len(nums)):
if nums[i]==0:
templen=0
else:
templen+=1
maxlen=max(maxlen,templen)
return maxlen