mirror of
https://github.com/chefyuan/algorithm-base.git
synced 2024-11-24 13:03:41 +00:00
Update leetcode485最大连续1的个数.md
This commit is contained in:
parent
107732a6c8
commit
c6060983ec
@ -66,6 +66,8 @@ class Solution {
|
||||
|
||||
好啦,下面我们直接看代码吧。
|
||||
|
||||
Java Code:
|
||||
|
||||
```java
|
||||
class Solution {
|
||||
public int findMaxConsecutiveOnes(int[] nums) {
|
||||
@ -88,3 +90,20 @@ class Solution {
|
||||
}
|
||||
```
|
||||
|
||||
Python3 Code:
|
||||
|
||||
|
||||
```py
|
||||
class Solution:
|
||||
def findMaxConsecutiveOnes(self, nums: List[int]) -> int:
|
||||
ans = i = t = 0
|
||||
for j in range(len(nums)):
|
||||
if nums[j] == 1:
|
||||
t += 1
|
||||
ans = max(ans, t)
|
||||
else:
|
||||
i = j + 1
|
||||
t = 0
|
||||
return ans
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user