Class MySudoku

java.lang.Object
algs13.xbacktrack.xsudoku.MySudoku
All Implemented Interfaces:
XBacktrackProblem<XMutableCell>

public final class MySudoku extends Object implements XBacktrackProblem<XMutableCell>
A Sudoker solver, implemented as a BacktrackProblem where each choice is represented by a MutableCell (a cell we can assign a digit as part of a possible solution to Sudoku). This project represents a more substantial Java program than what we have been working with so far in the course. Search in this file and in algs13.xbacktrack.xframework.MyBacktrackDriver (MyBacktrackDriver.java)for some TODOs that will direct you to what you need to do for this assignment.