Given binary array, find count of maximum number of consecutive 1’s present in the array.
Input : arr[] = {1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1}
Output : 4
Input : arr[] = {0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1}
Output : 1
def maxibin(arr): temp=0 count=0 for i in range(len(arr)): if arr[i]==0 : count=0 else: count+=1 temp=max(count,temp) return temp Arry=list(map(int,input('arr[] : ').split(' '))) print(maxibin(Arry))
Input_1:
arr[ ] : 1 1 0 0 1 0 1 0 1 1 1 1
Output:
4
Input_2:
arr[ ] : 0 0 1 0 1 0 1 0 1 0 1
Output
1
Input_3:
arr[ ] : 1 1 1 0 1 0 1 0 1 1 1 0
Output:
3
Input_4:
arr[ ] : 1 1 1 0 1 1 0 1 1 1 1 0 1 1 1
Output:
4
Illustration of the Output:
More Q
- Determine if a person could attend all meetings in given interval times.
- Find the volume of a volley ball
- Find the maximum score obtained at the end of colour chess grid game.
- Find the number of pairs if positive integers with condition is even.
- Return the largest subset such that every pair meets the given condition.
- Find the number of index triplets that satisfy given condition.
- Handling multiple queries using array – sum, update, range.
- Find all the sequences that occur more than once in DNA molecule.
- Find the biggest number.
- Sum of cube of each number is again equal to the number then it is an Armstrong number.
- Hello World.
- Calculate the Cube Root.
- Find the count of consecutive 1’s present in array.
- Return an array with athletes relative ranks according to the score.
- Return a string of its base 7 representation.
- Return kth largest element in sorted order.
- Find all repeated elements in the array.
- Find atleast one duplicate number in the array.
- Find the maximum result of = a XOR b.