June 2018 Update
This commit is contained in:
parent
ba8067c3b7
commit
22f33d4004
5278 changed files with 84726 additions and 14379 deletions
13
Task/Digital-root/Factor/digital-root.factor
Normal file
13
Task/Digital-root/Factor/digital-root.factor
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
USING: arrays formatting kernel math math.text.utils sequences ;
|
||||
IN: rosetta-code.digital-root
|
||||
|
||||
: digital-root ( n -- persistence root )
|
||||
0 swap [ 1 digit-groups dup length 1 > ] [ sum [ 1 + ] dip ]
|
||||
while first ;
|
||||
|
||||
: print-root ( n -- )
|
||||
dup digital-root
|
||||
"%-12d has additive persistence %d and digital root %d.\n"
|
||||
printf ;
|
||||
|
||||
{ 627615 39390 588225 393900588225 } [ print-root ] each
|
||||
Loading…
Add table
Add a link
Reference in a new issue