advent-of-code/day10/main.go
xuu d67ee5f3b6
All checks were successful
Go Test / build (pull_request) Successful in 19s
chore: add day 10
2023-12-09 10:59:46 -07:00

26 lines
383 B
Go

package main
import (
"bufio"
"fmt"
aoc "go.sour.is/advent-of-code-2023"
)
func main() { aoc.MustResult(aoc.Runner(run)) }
type result struct {
valuePT1 uint64
valuePT2 uint64
}
func (r result) String() string { return fmt.Sprintf("%#v", r) }
func run(scan *bufio.Scanner) (*result, error) {
for scan.Scan() {
text := scan.Text()
_ = text
}
return &result{}, nil
}