Grueling learning process through Day7

This commit is contained in:
2022-12-08 21:24:13 -05:00
parent 37ca7ee1c3
commit 1e65b503f7
7 changed files with 1279 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
module Day7Part1 (main) where
import Day7Lib
convertToString :: Int -> String
convertToString = show
main :: IO ()
main = do
input <- getContents
putStrLn $ convertToString $ day7 input
+11
View File
@@ -0,0 +1,11 @@
module Day7Part2 (main) where
import Day7Lib
convertToString :: Int -> String
convertToString = show
main :: IO ()
main = do
input <- getContents
putStrLn $ convertToString $ day7' input
+1044
View File
File diff suppressed because it is too large Load Diff