Skip to content

Backtracking is an algorithmic technique for solving problems recursively by trying to build a solution incrementally.

Notifications You must be signed in to change notification settings

titanite07/Sudoku-Solver-by-Backtracking

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Sudoku-Solver-by-Backtracking

The Backtracking Algorithm is a recursive search technique used to systematically explore potential solutions to combinatorial problems. It is particularly effective when there are multiple choices and constraints involved in finding a valid solution.

One of the most powerful and widely used approaches to solve Sudoku puzzles is the Backtracking Technique.

Backtracking is an algorithmic technique for solving problems recursively by trying to build a solution incrementally.

There are three types of problems in backtracking:

  1. Decision Problem – In this, we search for a feasible solution.
  2. Optimization Problem – In this, we search for the best solution.
  3. Enumeration Problem – In this, we find all feasible solutions.

About

Backtracking is an algorithmic technique for solving problems recursively by trying to build a solution incrementally.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages