-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathtemp.js
51 lines (37 loc) · 775 Bytes
/
temp.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
function fn(d) {
let total = 0;
for (let g = 10; g <= 20; g++) {
let count = 0;
const n = g;
const arrN = n.toString().split('');
for (let i = 0; i < arrN.length; i++) {
for (let j = i + 1; j <= arrN.length; j++) {
const value = Number(arrN.slice(i, j).join(''));
console.log('value:', value)
if (value % 3 === 0) {
console.log('>>>>>>>>>', value)
count++;
}
}
// console.log('---');
}
console.log('---');
if (count % 3 === 0) {
total++;
}
}
return total;
}
console.log('COUNT: ', fn(2));
/*
2
25
257
2573
5
57
573
7
73
3
*/