initial commit

This commit is contained in:
2025-08-03 20:16:55 -07:00
commit 87a130499d
89 changed files with 10241 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
module _20
let getSum =
let n = [ 1I .. 100I ] |> List.fold (*) 1I
(string n).ToCharArray()
|> Array.map (string >> int)
|> Array.fold (fun acc d -> acc + d) 0