-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsumZero.js
31 lines (27 loc) · 777 Bytes
/
sumZero.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
//Multiple Pointers - Problem solving pattern
//Naive Solution with Time complexity - O(N^2) & Space complexity - O(1)
// function sumZero(arr){
// for(let i = 0; i < arr.length; i++){
// for(let j = i + 1; j < arr.length; j++){
// if(arr[i] + arr[j] === 0){
// return [arr[i],arr[j]];
// }
// }
// }
// }
//Time complexity - O(N) & Space complexity - O(1)
function sumZero(arr) {
let left = 0;
let right = arr.length -1;
while(left < right){
let sum = arr[left] + arr[right];
if(sum === 0){
return [arr[left],arr[right]];
} else if(sum > 0){
right--;
} else {
left++;
}
}
}
sumZero([-3,-2,-1,0,1,2]) //returns [-2,2]