Design Sudoku
Get startedজয় শ্রী রাম
🕉Problem Statement:
Given a Sudoku, design an algorithm to solve it.
A sudoku solution must satisfy all of the following rules:
- Each of the digits 1-9 must occur exactly once in each row.
- Each of the digits 1-9 must occur exactly once in each column.
- Each of the digits 1-9 must occur exactly once in each of the nine 3x3 sub-boxes of the grid.
The '0' character indicates empty cells.
Solution in Java and Python:
Login to Access Content