Initial commit

This commit is contained in:
2022-12-06 16:09:51 -05:00
commit b53a8a48ee
32 changed files with 7450 additions and 0 deletions

9
day1/Day1Part1.hs Normal file
View File

@@ -0,0 +1,9 @@
module Day1Part1 (main) where
import Day1Lib
main :: IO ()
main = do
input <- getContents
putStrLn $ convertToString $ day1 input

9
day1/Day1Part2.hs Normal file
View File

@@ -0,0 +1,9 @@
module Day1Part2 (main) where
import Day1Lib
main :: IO ()
main = do
input <- getContents
putStrLn $ convertToString $ day1Two input

2243
day1/input Normal file

File diff suppressed because it is too large Load Diff