Oracle interview question

Code the solution for sudoku solver, without backtracking.

Interview Answer

Anonymous

9 Sept 2024

Use BFS algorithm for each spot and try placing all the numbers in the empty spaces until one of the combinations works correctly.