This repository has been archived on 2024-12-13. You can view files and clone it, but cannot push or open issues or pull requests.
2024-12-02 21:38:10 -05:00

12 lines
408 B
Haskell

import Lib (checkReport, checkReportDampened, getSafeReportCount, parsedFileString)
main = do
inputs <- readFile "inputs.txt"
let parsedInputs = parsedFileString inputs
let count = getSafeReportCount checkReport parsedInputs
putStrLn "The solution to part 1 is: "
print count
let count = getSafeReportCount checkReportDampened parsedInputs
putStrLn "The solution to part 2 is: "
print count