mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2026-04-09 02:23:36 +00:00
add day-20
This commit is contained in:
9
day-20/internal/point/point.go
Normal file
9
day-20/internal/point/point.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package point
|
||||
|
||||
type Point struct {
|
||||
X, Y int
|
||||
}
|
||||
|
||||
func New(x, y int) Point {
|
||||
return Point{x, y}
|
||||
}
|
||||
Reference in New Issue
Block a user