Recursive Sudoku Solver

In my ICS 212 course, I was tasked to find a way to solve a given hexadecimal sudoku problem using recusion, Java, and Eclipse. I was given help and assistance with code by my professor, Carleton Moore, and classmates I bounced errors off of. The recursive strategy for finding a solution to a sudoku problem was:

“i. If all cells are filled, see if this Sudoku is valid. If it is valid, we have found a solution. If not, this Sudoku is not a solution. Base case 1

ii. If at least one cell is not filled, see what values are legal for this cell:

The algorithm I eventually developed was an example of backtracking, and I certainly had to backtrack often as well in order to fix both logic and coding errors in my program. I managed to eventually create an algorithm to solve sudoku problems by using a recursive strategy at the end of the day, however! By completing this project, I learned how to implement a recursive algorithm, gained a deeper comprehension of “backtracking,” and further developed my Java skills.