This commit is contained in:
2023-12-08 14:10:45 +01:00
parent 1326fe7e33
commit dbfd617fb0
5 changed files with 94 additions and 0 deletions

12
day08/Main.hs Normal file
View File

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