Finish day9

This commit is contained in:
2022-12-10 11:29:37 -05:00
parent 1e1e0fbec4
commit 0c00d7f3d4
7 changed files with 2234 additions and 2 deletions

11
day9/Day9Part1.hs Normal file
View File

@@ -0,0 +1,11 @@
module Day9Part1 (main) where
import Day9Lib
convertToString :: Int -> String
convertToString = show
main :: IO ()
main = do
input <- getContents
putStrLn $ convertToString $ day9 input

11
day9/Day9Part2.hs Normal file
View File

@@ -0,0 +1,11 @@
module Day9Part2 (main) where
import Day9Lib
convertToString :: Int -> String
convertToString = show
main :: IO ()
main = do
input <- getContents
putStrLn $ convertToString $ day9' input

2000
day9/input Normal file

File diff suppressed because it is too large Load Diff