Tweaked parser
authorNeil Smith <NeilNjae@users.noreply.github.com>
Wed, 11 Dec 2024 15:49:40 +0000 (15:49 +0000)
committerNeil Smith <NeilNjae@users.noreply.github.com>
Wed, 11 Dec 2024 15:49:40 +0000 (15:49 +0000)
advent11/Main.hs

index 835b0e6b189bd3885ebcc9ad0d01866fba0e2038..d31c6947cf76ecccd2ff73c3df693669625ed7f6 100644 (file)
@@ -45,7 +45,7 @@ expandStone n
 -- parse the input file
 
 stonesP :: Parser [Int]
-stonesP = decimal `sepBy` " "
+stonesP = decimal `sepBy` space
 
 successfulParse :: Text -> [Int]
 successfulParse input =