I can run the code but it does not solve, I can not figure it out. Thx


public class SudokuTestSolver {
int Unassigned = 0;


public boolean solveSudoku(int[][] grid) {
int x = 0;
int y...