-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPickingNumbers.js
36 lines (32 loc) · 981 Bytes
/
PickingNumbers.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
/*
* Complete the 'pickingNumbers' function below.
*
* The function is expected to return an INTEGER.
* The function accepts INTEGER_ARRAY a as parameter.
*/
function pickingNumbers(a) {
// Write your code here
let sortedArray = a.sort(function(a,b){
return(a - b);
});
let currentArray = [];
let longestArray = 0;
let startNumber = 0;
for(let i = 0; i < sortedArray.length; i++){
let result = Math.abs(sortedArray[startNumber] - sortedArray[i]);
if (result <= 1){
currentArray.push(sortedArray[i]);
if(currentArray.length > longestArray){
longestArray = currentArray.length
};
}else {
startNumber = i;
if(currentArray.length > longestArray){
longestArray = currentArray.length
}
currentArray = [];
currentArray.push(sortedArray[i]);
}
}
return longestArray;
}