forked from knaxus/problem-solving-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
32 lines (29 loc) · 783 Bytes
/
index.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
// the best case using a data structure - SET
function findTwoNumsAddingToN(arr, sum) {
const nums = [];
const store = new Set();
for (let i = 0; i < arr.length; i++) {
// check if the set contains one of the pir that sum upto given sum
if (store.has(sum - arr[i])) {
nums.push(sum - arr[i]);
nums.push(arr[i]);
break;
}
// push the element in the set
store.add(arr[i]);
}
return nums.length ? nums : false;
}
// the Brute force approach
function findTwoNumsAddingToN2(arr, sum) {
const nums = [];
for (let i = 0; i < arr.length; i++) {
for (let j = i + 1; j < arr.length; j++) {
if (arr[i] + arr[j] === sum) {
nums.push(arr[i], arr[j]);
break;
}
}
}
return nums.length ? nums : false;
}