1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/challenges/sudoku/solutions/python/function/Cell.py

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)