【leetcode 简单】第十三题 最大子序和

给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。

示例:

输入: [-2,1,-3,4,-1,2,1,-5,4],
输出: 6
解释: 连续子数组 [4,-1,2,1] 的和最大,为 6。
class Solution:
    def maxSubArray(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        max_value = nums[0]
        current =0
        for i in range(len(nums)):
            if current > 0: current +=nums[i]
            else:           current =  nums[i]
            if max_value < current:max_value = current
        return max_value

猜你喜欢

转载自www.cnblogs.com/flashBoxer/p/9452669.html