Tweaked
authorNeil Smith <neil.git@njae.me.uk>
Wed, 29 Nov 2017 08:21:02 +0000 (08:21 +0000)
committerNeil Smith <neil.git@njae.me.uk>
Wed, 29 Nov 2017 08:21:02 +0000 (08:21 +0000)
adventofcode1701/app/advent01.hs

index d6d37829e70ccbbcd15bfc41884470be1a28b11b..dc63f9cccb7371cfd927dbac08bbe4cbf36ef6df 100644 (file)
@@ -20,7 +20,7 @@ part1 instructions = do
 
 part2 :: [Int] -> IO ()
 part2 instructions = do
-        print $ length $ takeWhile (> -1) $ scanl (+) 0 instructions
+        print $ length $ takeWhile (>= 0) $ scanl (+) 0 instructions