mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-10 06:40:47 +00:00
15 lines
88 B
Go
15 lines
88 B
Go
package one
|
|
|
|
type direction int
|
|
|
|
const (
|
|
N direction = iota
|
|
NE
|
|
E
|
|
SE
|
|
S
|
|
SW
|
|
W
|
|
NW
|
|
)
|