mirror of
				https://github.com/theoludwig/programming-challenges.git
				synced 2025-09-11 23:11:21 +02: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)
 |