53. Maximum Subarray
Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum.
Follow up: If you have figured out the O(n) solution, try coding another solution using the divide and conquer approach, which is more subtle.
Example 1:
Input: nums = [-2,1,-3,4,-1,2,1,-5,4]
Output: 6
Explanation: [4,-1,2,1] has the largest sum = 6.Example 2:
Input: nums = [1]
Output: 1Example 3:
Input: nums = [0]
Output: 0Example 4:
Input: nums = [-1]
Output: -1Example 5:
Input: nums = [-2147483647]
Output: -2147483647Constraints:
1 <= nums.length <= 2 * 104-231 <= nums[i] <= 231 - 1
# @lc code=start
using LeetCode
function maximum_subarray(nums::Vector{Int})::Int
pre, max_res = 0, nums[1]
for num in nums
pre = max(pre + num, num)
max_res = max(pre, max_res)
end
return max_res
end
# @lc code=endmaximum_subarray (generic function with 1 method)
This page was generated using DemoCards.jl and Literate.jl.