6 lines
75 B
Python
6 lines
75 B
Python
|
|
class Board():
|
||
|
|
def __init__(self, board):
|
||
|
|
self.board = board
|
||
|
|
|
||
|
|
|