-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathseparate-the-numbers.js
60 lines (52 loc) · 1.41 KB
/
separate-the-numbers.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
56
57
58
59
60
/**
* @title Separate the Numbers
* @difficulty Easy
* @link https://www.hackerrank.com/challenges/separate-the-numbers/problem
*/
const digitCheck = (digit, value) => {
let ret = 1;
let mod = Number(value);
while (mod / 10 >= 1) {
mod /= 10;
ret++;
}
return digit === ret;
};
const isPossible = (query, digit) => {
const {length} = query;
let idx = 0;
let curDigit = digit;
let curValue = BigInt(query.substr(idx, curDigit)); // eslint-disable-line
idx += curDigit;
let nextDigit = curDigit;
let nextValue = BigInt(query.substr(idx, nextDigit)); // eslint-disable-line
while (idx < length) {
if (!digitCheck(nextDigit, nextValue)) {
break;
}
const diff = Number(nextValue - curValue);
if (diff === 1) {
curValue = nextValue;
curDigit = nextDigit;
idx += nextDigit;
nextValue = BigInt(query.substr(idx, nextDigit)); // eslint-disable-line
} else if (nextDigit - curDigit === 0) {
nextDigit++;
nextValue = BigInt(query.substr(idx, nextDigit)); // eslint-disable-line
} else {
break;
}
}
return (idx >= length);
};
// Complete the separateNumbers function below.
const separateNumbers = query => {
const {length} = query;
for (let digit = 1; digit <= length / 2; digit++) {
if (isPossible(query, digit)) {
console.log('YES', query.substring(0, digit));
return;
}
}
console.log('NO');
};