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

18 lines
194 B
Go
Raw Permalink Normal View History

2024-12-13 10:02:48 +00:00
package two
const (
N = iota
E
S
W
)
func neighbours(p point) [4]point {
return [4]point{
{p.x, p.y - 1}, // N
{p.x + 1, p.y}, // E
{p.x, p.y + 1}, // S
{p.x - 1, p.y}, // W
}
}