mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-09 22:30:47 +00:00
11 lines
164 B
Go
11 lines
164 B
Go
|
package two
|
||
|
|
||
|
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
|
||
|
}
|
||
|
}
|