Square Digits Sequence
Description
Consider a sequence of numbers a0
, a1
, …, an
, in which an element is equal to the sum of squared digits of the previous element. The sequence ends once an element that has already been in the sequence appears again.
Given the first element a0
, find the length of the sequence.
Example
-
For
a0 = 16
, the output should besquareDigitsSequence(a0) = 9
.Here’s how elements of the sequence are constructed:
a0 = 16
a1 = 12 + 62 = 37
a2 = 32 + 72 = 58
a3 = 52 + 82 = 89
a4 = 82 + 92 = 145
a5 = 12 + 42 + 52 = 42
a6 = 42 + 22 = 20
a7 = 22 + 02 = 4
a8 = 42 = 16
, which has already occurred before (a0
)
Thus, there are
9
elements in the sequence. -
For
a0 = 103
, the output should besquareDigitsSequence(a0) = 4
.The sequence goes as follows:
103 -> 10 -> 1 -> 1
,4
elements altogether.
Input/Output
-
[execution time limit] 4 seconds (js)
-
[input] integer a0
First element of a sequence, positive integer.
Guaranteed constraints:
1 ≤ a0 ≤ 105
. -
[output] integer
[JavaScript (ES6)] Syntax Tips
1
2
3
4
5
6
// Prints help message to the console
// Returns a string
function helloWorld(name) {
console.log("This prints to the console when you Run Tests");
return "Hello, " + name;
}
Solution
1
2
3
4
5
6
7
8
9
10
function squareDigitsSequence(a0) {
var h = [a0];
var n = String(a0).split('').map(Number).map(el => el * el).reduce((a, b) => a + b);
while (h.indexOf(n) < 0) {
h.push(n);
n = String(n).split('').map(Number).map(el => el * el).reduce((a, b) => a + b);
}
return h.length + 1;
}