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

7 lines
79 B
Go
Raw Permalink Normal View History

2024-12-13 10:02:48 +00:00
package two
type path struct {
visited map[point]struct{}
perimeter int
}