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

11 lines
144 B
Go
Raw Permalink Normal View History

2024-12-10 21:45:16 +00:00
package two
func neighbours(p point) [4]point {
return [4]point{
2024-12-10 22:04:52 +00:00
{p.x, p.y - 1},
{p.x + 1, p.y},
{p.x, p.y + 1},
{p.x - 1, p.y},
2024-12-10 21:45:16 +00:00
}
}