More point-free
authorNeil Smith <neil.git@njae.me.uk>
Thu, 1 Dec 2016 14:46:26 +0000 (14:46 +0000)
committerNeil Smith <neil.git@njae.me.uk>
Thu, 1 Dec 2016 14:46:26 +0000 (14:46 +0000)
advent01.hs

index 27a6f21db1c5351d75e3b1ce72ba5656e206cc56..6b3eefd047e5dd21fb79ffb1cf79fb70bd998b48 100644 (file)
@@ -52,7 +52,8 @@ expandSteps =
 
 -- Execute a series of steps, keeping track of the positions after each step
 takeSteps :: Position -> [Step] -> [Position]
-takeSteps pos steps = scanl move pos steps
+-- takeSteps pos steps = scanl move pos steps
+takeSteps = scanl move
 
 -- Make one move, by updating direction then position
 move :: Position -> Step -> Position