Day 4 done

This commit is contained in:
2024-12-04 18:23:27 +01:00
parent b3c9f84097
commit 1bc1eded9d
3 changed files with 344 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package main
import (
"aoc2024/internal/common"
"aoc2024/internal/day04"
)
func main() {
input := common.LoadInputs("04.txt")
result1, result2 := day04.Handle(input)
println(result1)
println(result2)
}