aoc2024/day-18/internal/one/point.go

7 lines
49 B
Go
Raw Normal View History

2024-12-18 18:48:11 +00:00
package one
type Point struct {
X int
Y int
}