mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-10 06:40:47 +00:00
15 lines
290 B
Go
15 lines
290 B
Go
package two
|
|
|
|
func neighbours(p point) []point {
|
|
return []point{
|
|
{p.x, p.y - 1}, // N
|
|
{p.x + 1, p.y - 1}, // NE
|
|
{p.x + 1, p.y}, // E
|
|
{p.x + 1, p.y + 1}, // SE
|
|
{p.x, p.y + 1}, // S
|
|
{p.x - 1, p.y + 1}, // SW
|
|
{p.x - 1, p.y}, // W
|
|
{p.x - 1, p.y - 1}, // NW
|
|
}
|
|
}
|