advent-of-code/template/main.go
xuu 596f3e7533
All checks were successful
Go Test / build (pull_request) Successful in 35s
chore: add day 11
2023-12-12 13:44:28 -07:00

31 lines
398 B
Go

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