forked from YovM/Algorithms
* Generate parantheses iterative * Generate parantheses iterative * Generating parantheses code using iterative approach * Update generate_parentheses_iterative.py * updating DIRECTORY.md * Update generate_parentheses_iterative.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update generate_parentheses_iterative.py * Update generate_parentheses_iterative.py * Update generate_parentheses_iterative.py --------- Co-authored-by: nightmare10123 <pgadekar10123@gmail.com> Co-authored-by: Maxim Smolskiy <mithridatus@mail.ru> Co-authored-by: MaximSmolskiy <MaximSmolskiy@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> |
||
|---|---|---|
| .. | ||
| README.md | ||
| __init__.py | ||
| all_combinations.py | ||
| all_permutations.py | ||
| all_subsequences.py | ||
| coloring.py | ||
| combination_sum.py | ||
| crossword_puzzle_solver.py | ||
| generate_parentheses.py | ||
| generate_parentheses_iterative.py | ||
| hamiltonian_cycle.py | ||
| knight_tour.py | ||
| match_word_pattern.py | ||
| minimax.py | ||
| n_queens.py | ||
| n_queens_math.py | ||
| power_sum.py | ||
| rat_in_maze.py | ||
| sudoku.py | ||
| sum_of_subsets.py | ||
| word_break.py | ||
| word_ladder.py | ||
| word_search.py | ||
README.md
Backtracking
Backtracking is a way to speed up the search process by removing candidates when they can't be the solution of a problem.