https://app.codesignal.com/arcade/intro/level-9/hoLtYWbjdrD2PF6yo
Let's define digit degree of some positive integer as the number of times we need to replace this number with the sum of its digits until we get to a one digit number.
Given an integer, find its digit degree.
-
For
n = 5, the output should besolution(n) = 0; -
For
n = 100, the output should besolution(n) = 1.1 + 0 + 0 = 1. -
For
n = 91, the output should besolution(n) = 2.9 + 1 = 10 -> 1 + 0 = 1.