vishal8113 / Hacktoberfest-2024

This repository is waiting for your contribution. If you have not contribute in hacktober fest till now. You can start contributing in open source from here.
3 stars 25 forks source link

Added Sudoku_Solver in Java #24

Closed shivam-1810 closed 3 days ago

shivam-1810 commented 3 days ago

Problem statement - Write a program to solve a Sudoku puzzle by filling the empty cells. 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 9 3x3 sub-boxes of the grid. The '.' character indicates empty cells.