Day 3 done
This commit is contained in:
@@ -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)
|
||||
}
|
||||
Reference in New Issue
Block a user