Merge pull request #15 from azl397985856/patch-4

feat(ml): leetcode485最大连续1的个数 添加 Python3 Code
pull/17/head
算法基地 2021-04-26 15:09:37 +08:00 committed by GitHub
commit 9a7580e39b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions

View File

@ -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
```