-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path15_3Sum.js
55 lines (52 loc) · 1.74 KB
/
15_3Sum.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/**
* @param {number[]} nums
* @return {number[][]}
*/
var threeSum = function(nums) {
let l_index = 0
let ans = []
// find triplets
while (l_index != nums.length-2) {
let m_index = l_index+1
while (m_index != nums.length-1) {
let r_index = m_index+1
while(r_index != nums.length) {
// console.log(l_index, m_index, r_index)
if (nums[l_index] + nums[m_index] + nums[r_index] == 0) {
let sortedAns = [nums[l_index], nums[m_index], nums[r_index]]
sortedAns.sort((a, b) => (a - b))
if (ans.length == 0) {
ans.push(sortedAns)
} else {
// check if there is duplicate
let hasDuplicate = false
for (let i=0; i<ans.length; i++) {
if (isArrayEqual(ans[i], sortedAns)) {
hasDuplicate = true
break
}
}
if (!hasDuplicate) {
ans.push(sortedAns)
// console.log('answer added: ' + sortedAns)
} else {
// console.log('answer not added: ' + sortedAns)
}
}
}
r_index += 1
}
m_index += 1
}
l_index += 1
}
return ans
function isArrayEqual(array1, array2) {
for (let i=0; i<array1.length; i++) {
if (array1[i] != array2[i]) {
return false
}
}
return true
}
};