Last active
May 23, 2017 13:44
-
-
Save sava-vidakovic/b5803553a35aa5dc6ee5e5b78e704c97 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** A digital root is the recursive sum of all the digits in a number. Given n, take the sum of the digits of n. If that value has two digits, continue reducing in this way until a single-digit number is produced. This is only applicable to the natural numbers. | |
* | |
* Here's how it works (Ruby example given): | |
* | |
* digital_root(16) | |
* => 1 + 6 | |
* => 7 | |
* | |
* digital_root(942) | |
* => 9 + 4 + 2 | |
* => 15 ... | |
* => 1 + 5 | |
* => 6 | |
* | |
* digital_root(132189) | |
* => 1 + 3 + 2 + 1 + 8 + 9 | |
* => 24 ... | |
* => 2 + 4 | |
* => 6 | |
* | |
* digital_root(493193) | |
* => 4 + 9 + 3 + 1 + 9 + 3 | |
* => 29 ... | |
* => 2 + 9 | |
* => 11 ... | |
* => 1 + 1 | |
* => 2 | |
*/ | |
function digital_root(n) { | |
return (n - 1) % 9 + 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment