mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-09 14:20:48 +00:00
typo
This commit is contained in:
parent
d441f6a555
commit
e1322465af
@ -7,7 +7,7 @@ func neighbours(p position) [8]position {
|
||||
{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 + 1}, // SW
|
||||
{p.x - 1, p.y}, // W
|
||||
{p.x - 1, p.y - 1}, // NW
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user