Maximum Subarray
Examples
Example 1:
Input: nums = [2,-3,4,-2,2,1,-1,4]
Output: 8
Explanation:
Example 2:
Input: nums = [-1]
Output: -1
Example 1:
Input: nums = [2,-3,4,-2,2,1,-1,4]
Output: 8
Explanation:
Example 2:
Input: nums = [-1]
Output: -1
Given an array of integers nums, find the subarray with the largest sum and return the sum.
A subarray is a contiguous non-empty sequence of elements within an array.
The subarray [4,-2,2,1,-1,4] has the largest sum 8.
1 <= nums.length <= 1000-1000 <= nums[i] <= 1000