Skip to content

The digital root is the recursive sum of all the digits of a number.

Notifications You must be signed in to change notification settings

JuanseGimenez/digital_root

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

La raíz digital es la suma recursiva de todos los dígitos de un número.

Dado n, tome la suma de los dígitos de n. Si ese valor tiene más de un dígito, continúe reduciendo de esta manera hasta que se produzca un número de un solo dígito. La entrada será un número entero no negativo.

    16  -->  1 + 6 = 7
   942  -->  9 + 4 + 2 = 15  -->  1 + 5 = 6
132189  -->  1 + 3 + 2 + 1 + 8 + 9 = 24  -->  2 + 4 = 6
493193  -->  4 + 9 + 3 + 1 + 9 + 3 = 29  -->  2 + 9 = 11  -->  1 + 1 = 2

About

The digital root is the recursive sum of all the digits of a number.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages