Code working, sudoku solve, but if you write in a number of several identical Digits, the program hangs and does not generate an error, it should. Please help.
class Game
{
private int[,] puzzle = new int[9, 9];
public bool isAvailable(int row, int col, int num)
{
int rowStart = (row / 3) * 3;
int colStart = (col / 3) * 3;
for (int i = 0; i < 9; ++i)
{
if (puzzle[row, i] == num) return false;
if (puzzle[i, col] == num) return false;
if (puzzle[rowStart + (i % 3), colStart + (i / 3)] == num) return false;
}
return true;
}
public bool fillSudoku(int row, int col)
{
if (row < 9 && col < 9)
{
if (puzzle[row, col] != 0)
{
if ((col + 1) < 9) return fillSudoku(row, col + 1);
else if ((row + 1) < 9) return fillSudoku(row + 1, 0);
else return true;
}
else
{
for (int i = 0; i < 9; ++i)
{
if (isAvailable(row, col, i + 1))
{
puzzle[row,col] = i + 1;
if (fillSudoku(row, col)) return true;
else puzzle[row,col] = 0;
}
}
}
return false;
}
else return true;
}
public void checkSolutions()
{
if (!fillSudoku(0, 0))
{
Console.Write("\n\nNow Solutions\n\n");
}
}
}
With this layout, starts looping and no error
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 5 5 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0
fullcode: https://dotnetfiddle.net/YoyWdN
Added check before adding, and there are no errors.
Calling this: