mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-10 14:50:46 +00:00
13 lines
58 B
Go
13 lines
58 B
Go
package one
|
|
|
|
const (
|
|
N = iota
|
|
NE
|
|
E
|
|
SE
|
|
S
|
|
SW
|
|
W
|
|
NW
|
|
)
|