feat: day 1 first part done

This commit is contained in:
2024-12-01 12:58:11 +01:00
commit fe8e661b1f
6 changed files with 1085 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
package main
import (
"aoc2024/internal/common"
"aoc2024/internal/day01"
)
func main() {
input := common.LoadInputs("01_1.txt")
result := day01.Handle(input)
println(result)
}