Knight's Tour
Knight's Tour
Scanner;
sol[0][0] = 0;
return true;
}
static boolean solveKTUtil(int x, int y, int movei, int sol[][], int xMove[],
int yMove[], int N) {
int k, next_x, next_y;
if (movei == N * N)
return true;
return false;
}