mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-09 22:30:47 +00:00
clean up function
This commit is contained in:
parent
83399a45c2
commit
4013cd6c7f
@ -2,13 +2,13 @@ package one
|
||||
|
||||
func neighbours(p point) [8]point {
|
||||
return [8]point{
|
||||
{y: p.y - 1, x: p.x, direction: N},
|
||||
{y: p.y - 1, x: p.x + 1, direction: NE},
|
||||
{y: p.y, x: p.x + 1, direction: E},
|
||||
{y: p.y + 1, x: p.x + 1, direction: SE},
|
||||
{y: p.y + 1, x: p.x, direction: S},
|
||||
{y: p.y + 1, x: p.x - 1, direction: SW},
|
||||
{y: p.y, x: p.x - 1, direction: W},
|
||||
{y: p.y - 1, x: p.x - 1, direction: NW},
|
||||
{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},
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user