Python/backtracking
Aswin P Kumar 080e7903a0
Add Word Break algorithm (#11687)
* Add Word Break algorithm

* Add Word Break algorithm

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2024-10-02 17:03:48 -07:00
..
__init__.py
all_combinations.py [pre-commit.ci] pre-commit autoupdate (#11322) 2024-03-13 07:52:41 +01:00
all_permutations.py Fixes #9943 (#10252) 2024-06-02 20:00:26 -07:00
all_subsequences.py Fixes #9943 (#10252) 2024-06-02 20:00:26 -07:00
coloring.py [pre-commit.ci] pre-commit autoupdate (#11322) 2024-03-13 07:52:41 +01:00
combination_sum.py
crossword_puzzle_solver.py Enable ruff PLR5501 rule (#11332) 2024-03-28 18:25:41 +01:00
generate_parentheses.py Generate parentheses (#10903) 2023-10-29 13:55:31 +01:00
hamiltonian_cycle.py [pre-commit.ci] pre-commit autoupdate (#11322) 2024-03-13 07:52:41 +01:00
knight_tour.py [pre-commit.ci] pre-commit autoupdate (#11473) 2024-07-02 07:02:29 +02:00
match_word_pattern.py
minimax.py [pre-commit.ci] pre-commit autoupdate (#11322) 2024-03-13 07:52:41 +01:00
n_queens_math.py [pre-commit.ci] pre-commit autoupdate (#11322) 2024-03-13 07:52:41 +01:00
n_queens.py [pre-commit.ci] pre-commit autoupdate (#11322) 2024-03-13 07:52:41 +01:00
power_sum.py
rat_in_maze.py
README.md
sudoku.py Enable ruff RUF002 rule (#11377) 2024-04-22 21:51:47 +02:00
sum_of_subsets.py [pre-commit.ci] pre-commit autoupdate (#11322) 2024-03-13 07:52:41 +01:00
word_break.py Add Word Break algorithm (#11687) 2024-10-02 17:03:48 -07:00
word_ladder.py Add word ladder algorithm in backtracking (#11590) 2024-10-01 19:48:17 -07:00
word_search.py