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

11 lines
104 B
Go
Raw Normal View History

2024-12-16 11:56:53 +00:00
package one
type point struct {
x int
y int
}
func newPoint(x, y int) point {
return point{x, y}
}