Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 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