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

7 lines
49 B
Go
Raw Normal View History

2024-12-18 18:48:11 +00:00
package two
type point struct {
x int
y int
}