Oracle Interview Question

Code the solution for sudoku solver, without backtracking.

Interview Answer

Anonymous

Sep 9, 2024

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