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
+12
View File
@@ -0,0 +1,12 @@
module _32
open common
let panDigitalProduct =
crossMapList [12..98] [123..987]
|> Seq.append (crossMapList [1..9] [1234..9876])
|> Seq.map (fun (x,y) -> [x;y;x*y])
|> Seq.filter ((List.map unbox) >> isPanDigitalGroup)
|> Seq.map (fun l -> l.[2])
|> Seq.distinct
|> Seq.sum