Compare commits

..

1 Commits

Author SHA1 Message Date
Quinten Kock 520a79e175 Refactor part 1 to use part 2 2022-12-05 16:16:01 +01:00
1 changed files with 1 additions and 0 deletions

View File

@ -1,6 +1,7 @@
import Data.List (transpose, delete) import Data.List (transpose, delete)
import Data.List.Split (chunksOf, splitOn) import Data.List.Split (chunksOf, splitOn)
import Data.Char (isSpace) import Data.Char (isSpace)
import Debug.Trace (traceShowId, traceShow)
data Command = Move {amount :: Int, from :: Int, to :: Int} deriving Show data Command = Move {amount :: Int, from :: Int, to :: Int} deriving Show