This commit is contained in:
2023-12-07 15:16:58 +01:00
parent 05de161249
commit 1326fe7e33
5 changed files with 122 additions and 0 deletions

12
day07/Main.hs Normal file
View File

@@ -0,0 +1,12 @@
module Main where
import Commons
import qualified Part1
import qualified Part2
main = do hands <- parse
let part1Res = Part1.getTotalWinnings hands
print part1Res
let part2Res = Part2.getTotalWinnings hands
print part2Res