Challenge: Finding the Largest Sum Subarray
In this challenge, we’ll find a subarray whose elements sum up to the largest value.
We'll cover the following
Problem
Given an array of positive and negative integers, find a contiguous subarray whose sum (sum of its elements) is the maximum.
Input
An integer array.
Output
Maximum subarray sum.
Sample input
array = { 1, -2, 3, 4, -4, 6, -14, 6, 2 }
Sample output
sum = 9
Let’s look at the illustration to better understand how it works.
Level up your interview prep. Join Educative to access 80+ hands-on prep courses.