mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
47dd31f4a1
* Added 5 README files * corrected arithmetic_analysis README * Update audio_filters/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> * Update backtracking/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> * Update bit_manipulation/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> Co-authored-by: John Law <johnlaw.po@gmail.com> |
||
---|---|---|
.. | ||
__init__.py | ||
all_combinations.py | ||
all_permutations.py | ||
all_subsequences.py | ||
coloring.py | ||
hamiltonian_cycle.py | ||
knight_tour.py | ||
minimax.py | ||
n_queens_math.py | ||
n_queens.py | ||
rat_in_maze.py | ||
README.md | ||
sudoku.py | ||
sum_of_subsets.py |
Backtracking
Backtracking is a way to speed up the search process by removing candidates when they can't be the solution of a problem.