Day 3 done

This commit is contained in:
2024-12-03 13:32:36 +01:00
parent fbb860804a
commit b3c9f84097
3 changed files with 75 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
package main
import (
"fmt"
"os"
"aoc2024/internal/common"
"aoc2024/internal/day03"
)
func main() {
fmt.Println("Opening file...")
bytes := common.Must(os.ReadFile("/home/g3po/Projects/advent_of_code_2024/inputs/03_1.txt"))
result1, result2 := day03.Handle(bytes)
println(result1, result2)
}