-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMaxConsecutiveOnes.java
More file actions
41 lines (30 loc) · 991 Bytes
/
MaxConsecutiveOnes.java
File metadata and controls
41 lines (30 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
Given a binary array nums, return the maximum number of consecutive 1's in the array.
Example 1:
Input: nums = [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.
Example 2:
Input: nums = [1,0,1,1,0,1]
Output: 2
*/
class Solution {
public int findMaxConsecutiveOnes(int[] nums) {
int maxConsecutive = 0;
int count = 0;
for(int i = 0; i < nums.length; i++){
if(nums[i] == 1){
count++;
} else{
if( maxConsecutive < count ){
maxConsecutive = count;
}
count = 0;
}
if( i + 1 == nums.length && maxConsecutive < count){
maxConsecutive = count;
}
}
return maxConsecutive;
}
}