Exemple #1
0
class Sudoku:

    #add more variables here that will be used to represent the current game
    def __init__(self):
        self.read_write=FileCom()

    def configure_board(self,config_file):
        #prompt in future
        self.cur_file=config_file
        self.board=self.read_write.read(config_file)
Exemple #2
0
from FileCom import *



y=FileCom()
board=y.read("easy1.txt")
board.displayBoard()




Exemple #3
0
 def __init__(self):
     self.read_write=FileCom()