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

11 lines
76 B
Go
Raw Permalink Normal View History

2024-12-05 01:31:44 +00:00
package two
type direction int
2024-12-05 01:31:44 +00:00
const (
NW direction = iota
2024-12-05 01:31:44 +00:00
NE
SE
SW
)