LeetCode-485. Max Consecutive Ones
Posted 码上哈希
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode-485. Max Consecutive Ones相关的知识,希望对你有一定的参考价值。
Given a binary array, find the maximum number of consecutive 1s in this array.
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.
public class Solution { public int findMaxConsecutiveOnes(int[] nums) { if (nums == null) return 0; int sum = 0, b = 0; for (int v : nums) { b += v; if (v == 0) b = 0; if (sum < b) sum = b; } return sum; } }
以上是关于LeetCode-485. Max Consecutive Ones的主要内容,如果未能解决你的问题,请参考以下文章
[leetcode-485-Max Consecutive Ones]
LeetCode-485. Max Consecutive Ones
LeetCode 485. Max Consecutive Ones
leetcode 485. Max Consecutive Ones