public bool isPuzzleValid() { //returns true if the puzzle has less than 7 unique solutions PuzzleSolver p = new PuzzleSolver(); return(p.isPuzzleValid(topNums, bottomNums, leftNums, rightNums)); }