View Combined Slides
/**
* This class checks a candidate Sudoku solution to see if it
* is a valid solution. The constructor takes a 9 x 9 array
* of single digit integers representing the candidate
* solution. There is only one public method called isValid()
* that tells if the solution is valid.
*
* @author Kevin Lillis
*
*/