summaryrefslogtreecommitdiff
path: root/haskell/p5.hs
diff options
context:
space:
mode:
Diffstat (limited to 'haskell/p5.hs')
-rw-r--r--haskell/p5.hs8
1 files changed, 8 insertions, 0 deletions
diff --git a/haskell/p5.hs b/haskell/p5.hs
new file mode 100644
index 0000000..ccee7fe
--- /dev/null
+++ b/haskell/p5.hs
@@ -0,0 +1,8 @@
+p5' :: Integer
+p5' = foldl lcm 1 [1..20]
+
+p5 :: Integer
+p5 = head $ filter cond [1..]
+ where cond n = null [x | x <- [2..20], mod n x /= 0]
+
+main = putStrLn $ "Solution: " ++ show p5