Compare commits

..

1 Commits

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

View File

@ -1,7 +1,6 @@
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