This commit is contained in:
Gareth
2025-12-01 18:11:11 +00:00
parent 358249e78a
commit 015607cde3
8 changed files with 4247 additions and 0 deletions

17
2025/gareth/main.go Normal file
View File

@@ -0,0 +1,17 @@
package main
import (
"aoc/2025/day01"
"fmt"
"os"
"time"
)
func main() {
start := time.Now()
data, _ := os.ReadFile("day01/input.txt")
fmt.Printf("part 1: %d\n", day01.Part1(string(data)))
fmt.Printf("part 2: %d\n", day01.Part2(string(data)))
elapsed := time.Since(start)
fmt.Printf("Execution time: %s\n", elapsed)
}