mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-08 16:54:50 +08:00
@ -160,7 +160,19 @@ class Solution {
|
|||||||
```
|
```
|
||||||
|
|
||||||
Python:
|
Python:
|
||||||
|
```python
|
||||||
|
class Solution:
|
||||||
|
def maxSubArray(self, nums: List[int]) -> int:
|
||||||
|
result = -float('inf')
|
||||||
|
count = 0
|
||||||
|
for i in range(len(nums)):
|
||||||
|
count += nums[i]
|
||||||
|
if count > result:
|
||||||
|
result = count
|
||||||
|
if count <= 0:
|
||||||
|
count = 0
|
||||||
|
return result
|
||||||
|
```
|
||||||
|
|
||||||
Go:
|
Go:
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user