advent-of-code/2023/types.go

11 lines
135 B
Go
Raw Normal View History

2023-12-01 21:54:23 +01:00
package _023
import "io"
type testCase struct {
filename string
want int
}
type solveFunc func(reader io.Reader) (int, error)