aoc2024/day-12/internal/two/path.go

7 lines
79 B
Go

package two
type path struct {
visited map[point]struct{}
perimeter int
}