예제 #1
0
파일: p96.py 프로젝트: Gjgarr/projEuler
def solve_puzzle(p):
    c = Sudoku(p)
    c.solve_board()
    return c.board_to_list()