diff --git a/src/Day2501.hs b/src/Day2501.hs index 77b2202..8029395 100644 --- a/src/Day2501.hs +++ b/src/Day2501.hs @@ -1,7 +1,5 @@ module Main where -import Debug.Trace (trace) - convertToInts = map (\it -> (if head it == 'L' then -1 else 1) * read (drop 1 it)) part1 :: String -> Int diff --git a/src/Day2502.hs b/src/Day2502.hs index a54637d..b08f473 100644 --- a/src/Day2502.hs +++ b/src/Day2502.hs @@ -3,8 +3,6 @@ module Main where import Data.List (find, nub) import Data.Maybe (isNothing) -import Debug.Trace (trace) - ----------------- ----- Utils ----- -----------------