Day5, add SortedMap

This commit is contained in:
2024-12-05 16:13:12 -08:00
parent 21b03368d4
commit ccbd617671
11 changed files with 268 additions and 42 deletions

17
aoc2024/DayXX.newt Normal file
View File

@@ -0,0 +1,17 @@
module DayXX
import Prelude
import Node
import Aoc
run : String -> IO Unit
run fn = do
putStrLn fn
text <- readFile fn
putStrLn text
main : IO Unit
main = do
run "aoc2024/dayXX/eg.txt"
run "aoc2024/dayXX/input.txt"