From 137e8c22e9eded2018521d6e5809a59ec2d33cb1 Mon Sep 17 00:00:00 2001 From: shu Date: Wed, 4 Dec 2019 08:21:27 +0100 Subject: [PATCH] eh --- 2019/day4/day4.hs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/2019/day4/day4.hs b/2019/day4/day4.hs index 0c36f2f..26684d2 100644 --- a/2019/day4/day4.hs +++ b/2019/day4/day4.hs @@ -1,10 +1,8 @@ import Data.List main = do - let bottom = 130254 - let top = 678275 - print (day4a bottom top) - print (day4b bottom top) + print (day4a 130254 678275) + print (day4b 130254 678275) day4a bottom top = dumbbrute bottom top p 0 day4b bottom top = dumbbrute bottom top p' 0