Solve Sudoku - Backtracking
Introduction
Sudoku is a popular number puzzle where the goal is to fill in a 9x9 grid with numbers from 1 to 9 such that each row, column, and 3x3 block contains all of the numbers from 1 to 9.
Approach
We can use a backtracking algorithm to find a ...
whoisrobinjha.hashnode.dev4 min read