1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00
Files
programming-challenges/challenges/sudoku/solutions/python/function/Cell.py
2021-07-06 15:59:33 +02:00

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)