This commit is contained in:
2025-02-22 22:49:26 +02:00
commit b215893fe8
8 changed files with 310 additions and 0 deletions

4
Point.py Normal file
View File

@@ -0,0 +1,4 @@
class Point:
def __init__(self, x:int, y:int) -> None:
self.x = x
self.y = y