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
+11
View File
@@ -0,0 +1,11 @@
module Day4Part1 (main) where
import Day4Lib
convertToString :: Int -> String
convertToString = show
main :: IO ()
main = do
input <- getContents
putStrLn $ convertToString $ day4 input
+11
View File
@@ -0,0 +1,11 @@
module Day4Part2 (main) where
import Day4Lib
convertToString :: Int -> String
convertToString = show
main :: IO ()
main = do
input <- getContents
putStrLn $ convertToString $ day4Alternate input
+1000
View File
File diff suppressed because it is too large Load Diff