-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4sum.js
More file actions
43 lines (34 loc) · 1.13 KB
/
4sum.js
File metadata and controls
43 lines (34 loc) · 1.13 KB
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
38
39
40
41
42
43
/**
* @param {number[]} nums
* @param {number} target
* @return {number[][]}
*/
var fourSum = function(nums, target) {
nums.sort((a,b) => a - b);
const ans=[];
for(let i=0; i<nums.length-3; i++){
for(let j= i+1; j<nums.length-2; j++){
let low = j+1;
let high = nums.length-1;
while(low < high){
const sum = nums[i] + nums[j] + nums[low] + nums[high];
if(sum === target ){
ans.push([nums[i], nums[j], nums[low], nums[high]]);
while(nums[low] === nums[low + 1]) low++;
while(nums[high] === nums[high - 1]) high--;
low ++;
high --;
}
else if(sum < target){
low++;
}
else {
high --;
}
}
while(nums[j] === nums[j+1]) j++;
}
while(nums[i] === nums[i+1]) i++;
}
return ans;
};