-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathProblem49.js
37 lines (34 loc) · 987 Bytes
/
Problem49.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Problem 49
//
// This problem was asked by Amazon.
//
// Given an array of numbers, find the maximum sum of any contiguous subarray of the array.
//
// For example, given the array [34, -50, 42, 14, -5, 86],
// the maximum sum would be 137, since we would take elements 42, 14, -5, and 86.
//
// Given the array [-5, -1, -8, -9], the maximum sum would be 0, since we would not take any elements.
//
// Do this in O(N) time.
//
// https://leetcode.com/problems/maximum-subarray/description/
//
// O(N) Time complexity
// O(1) Space complexity
// N is the number of elements in the array
/**
* Returns the maximum sum of any contigious subarray fo the array
* @param {number[]} nums
* @return {number}
*/
function maxSumSubarray(nums) {
let maxSum = 0;
let maxCurr = 0;
for (let i = 0; i < nums.length; i++) {
const num = nums[i];
maxCurr = Math.max(maxCurr + num, num);
maxSum = Math.max(maxSum, maxCurr);
}
return maxSum;
}
export default maxSumSubarray;