add day-20

This commit is contained in:
2024-12-20 20:48:13 +00:00
parent 03ef97051e
commit 72d329ae57
17 changed files with 555 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package point
type Point struct {
X, Y int
}
func New(x, y int) Point {
return Point{x, y}
}