advent-of-code/day10/main.go
xuu 883c0e69e1
Some checks failed
Go Test / build (pull_request) Failing after 20s
chore: add day 10
2023-12-09 10:58:29 -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
}