0485._Max_Consecutive_Ones
485. Max Consecutive Ones
难度: Easy
刷题内容
原题连接
内容描述
1 | Given a binary array, find the maximum number of consecutive 1s in this array. |
解题方案
思路 1
**- 时间复杂度: O(N)**- 空间复杂度: O(N)**
- 使用temp保存每个0之间的差值
- 找出最大的差值即可
代码:
1 | /** |
难度: Easy
原题连接
内容描述
1 | Given a binary array, find the maximum number of consecutive 1s in this array. |
思路 1
**- 时间复杂度: O(N)**- 空间复杂度: O(N)**
代码:
1 | /** |