Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
7
Task/Digital-root/F-Sharp/digital-root.fs
Normal file
7
Task/Digital-root/F-Sharp/digital-root.fs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
//Find the Digital Root of An Integer - Nigel Galloway: February 1st., 2015
|
||||
//This code will work with any integer type
|
||||
let inline digitalRoot N BASE =
|
||||
let rec root(p,n) =
|
||||
let s = sumDigits n BASE
|
||||
if s < BASE then (s,p) else root(p+1, s)
|
||||
root(LanguagePrimitives.GenericZero<_> + 1, N)
|
||||
Loading…
Add table
Add a link
Reference in a new issue