mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
9 lines
204 B
Python
9 lines
204 B
Python
|
class Cell:
|
||
|
def __init__(self, number: int, x: int, y: int) -> None:
|
||
|
self.number = number
|
||
|
self.x = x
|
||
|
self.y = y
|
||
|
|
||
|
def __repr__(self) -> str:
|
||
|
return str(self.number)
|