aoc2024/day-04/internal/two/direction.go

9 lines
46 B
Go

package two
const (
NW = iota
NE
SE
SW
)