[Solved] Backtracking – Generate Sudokuarray
So this is my solution, there are better ways you can use backtracking to generate sudoku, like just calling fuelleArray(fieldIndex, numberInField). With that, backtracking would be more visible and clear in the code and you won’t have to deal, like I had, with the cases when its on the end of a row. public static … Read more