mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
9 lines
374 B
Markdown
9 lines
374 B
Markdown
|
# Backtracking
|
||
|
|
||
|
Backtracking is a way to speed up the search process by removing candidates when they can't be the solution of a problem.
|
||
|
|
||
|
* <https://en.wikipedia.org/wiki/Backtracking>
|
||
|
* <https://en.wikipedia.org/wiki/Decision_tree_pruning>
|
||
|
* <https://medium.com/@priyankmistry1999/backtracking-sudoku-6e4439e4825c>
|
||
|
* <https://www.geeksforgeeks.org/sudoku-backtracking-7/>
|