mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2026-01-02 11:57:52 +00:00
10 lines
48 B
Go
10 lines
48 B
Go
package two
|
|
|
|
const (
|
|
N = iota
|
|
E
|
|
S
|
|
W
|
|
None
|
|
)
|