1 Star 0 Fork 0

徐长贺/Leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
_485.java 955 Bytes
一键复制 编辑 原始数据 按行查看 历史
Fisher Coder 提交于 6年前 . add 485
package com.fishercoder.solutions;
/**
* 485. Max Consecutive Ones
*
* 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.
*
* Note:
* The input array will only contain 0 and 1.
* The length of input array is a positive integer and will not exceed 10,000
* */
public class _485 {
public static class Solution1 {
public int findMaxConsecutiveOnes(int[] nums) {
int maxLen = 0;
for (int i = 0; i < nums.length; i++) {
int currentLen = 0;
while (i < nums.length && nums[i] == 1) {
i++;
currentLen++;
}
maxLen = Math.max(maxLen, currentLen);
}
return maxLen;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/isulong/Leetcode.git
git@gitee.com:isulong/Leetcode.git
isulong
Leetcode
Leetcode
master

搜索帮助