forked from TheAlgorithms/JavaScript
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMaxNonAdjacentSum.js
More file actions
Latest commit
29 lines (22 loc) · 746 Bytes
/
Copy pathMaxNonAdjacentSum.js
File metadata and controls
29 lines (22 loc) · 746 Bytes
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
functionmaximumNonAdjacentSum(nums){
/*
* Find the maximum non-adjacent sum of the integers in the nums input list
* :param nums: Array of Numbers
* :return: The maximum non-adjacent sum
*/
if(nums.length<0)return0
letmaxIncluding=nums[0]
letmaxExcluding=0
for(constnumofnums.slice(1)){
consttemp=maxIncluding
maxIncluding=maxExcluding+num
maxExcluding=Math.max(temp,maxExcluding)
}
returnMath.max(maxExcluding,maxIncluding)
}
// Example
// maximumNonAdjacentSum([1, 2, 3]))
// maximumNonAdjacentSum([1, 5, 3, 7, 2, 2, 6]))
// maximumNonAdjacentSum([-1, -5, -3, -7, -2, -2, -6]))
// maximumNonAdjacentSum([499, 500, -3, -7, -2, -2, -6]))
export{maximumNonAdjacentSum}