#backtracking
Read more stories on Hashnode
Articles with this tag
Problem Write a program to solve a Sudoku puzzle by filling the empty cells. (link) A sudoku solution must satisfy all of the following rules: Each...
Introduction Recursion When a function calls itself until a specified condition is met. f(){ print(1); f(); } Stack Space Base Case The...