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