@@ -72,7 +72,7 @@ If you want to uninstall algorithms, it is as simple as:
7272 - [ move_zeros] ( algorithms/arrays/move_zeros.py )
7373 - [ n_sum] ( algorithms/arrays/n_sum.py )
7474- [ automata] ( algorithms/automata )
75- - [ DFA] ( algorithms/automata/DFA .py )
75+ - [ DFA] ( algorithms/automata/dfa .py )
7676- [ backtrack] ( algorithms/backtrack )
7777 - [ general_solution.md] ( algorithms/backtrack/ )
7878 - [ add_operators] ( algorithms/backtrack/add_operators.py )
@@ -196,15 +196,16 @@ If you want to uninstall algorithms, it is as simple as:
196196 - [ valid_sudoku] ( algorithms/map/valid_sudoku.py )
197197 - [ word_pattern] ( algorithms/map/word_pattern.py )
198198 - [ is_isomorphic] ( algorithms/map/is_isomorphic.py )
199- - [ is_anagram] ( algorithms/map/is_anagram.py )
199+ - [ is_anagram] ( algorithms/map/is_anagram.py )
200200- [ maths] ( algorithms/maths )
201+ - [ power] ( algorithms/maths/power.py )
201202 - [ base_conversion] ( algorithms/maths/base_conversion.py )
202203 - [ combination] ( algorithms/maths/combination.py )
203204 - [ cosine_similarity] ( algorithms/maths/cosine_similarity.py )
204205 - [ decimal_to_binary_ip] ( algorithms/maths/decimal_to_binary_ip.py )
205206 - [ euler_totient] ( algorithms/maths/euler_totient.py )
206207 - [ extended_gcd] ( algorithms/maths/extended_gcd.py )
207- - [ factorial] ( algorithms/maths/factorial.py )
208+ - [ factorial] ( algorithms/maths/factorial.py )
208209 - [ gcd/lcm] ( algorithms/maths/gcd.py )
209210 - [ generate_strobogrammtic] ( algorithms/maths/generate_strobogrammtic.py )
210211 - [ is_strobogrammatic] ( algorithms/maths/is_strobogrammatic.py )
@@ -258,6 +259,7 @@ If you want to uninstall algorithms, it is as simple as:
258259 - [ search_rotate] ( algorithms/search/search_rotate.py )
259260 - [ jump_search] ( algorithms/search/jump_search.py )
260261 - [ next_greatest_letter] ( algorithms/search/next_greatest_letter.py )
262+ - [ interpolation_search] ( algorithms/search/interpolation_search.py )
261263- [ set] ( algorithms/set )
262264 - [ randomized_set] ( algorithms/set/randomized_set.py )
263265 - [ set_covering] ( algorithms/set/set_covering.py )
@@ -283,6 +285,7 @@ If you want to uninstall algorithms, it is as simple as:
283285 - [ selection_sort] ( algorithms/sort/selection_sort.py )
284286 - [ shell_sort] ( algorithms/sort/shell_sort.py )
285287 - [ sort_colors] ( algorithms/sort/sort_colors.py )
288+ - [ stooge_sort] ( algorithms/sort/stooge_sort.py )
286289 - [ top_sort] ( algorithms/sort/top_sort.py )
287290 - [ wiggle_sort] ( algorithms/sort/wiggle_sort.py )
288291- [ stack] ( algorithms/stack )
@@ -323,6 +326,7 @@ If you want to uninstall algorithms, it is as simple as:
323326 - [ judge_circle] ( algorithms/strings/judge_circle.py )
324327 - [ strong_password] ( algorithms/strings/strong_password.py )
325328 - [ caesar_cipher] ( algorithms/strings/caesar_cipher.py )
329+ - [ check_pangram] (algorithms/strings/check_pangram.py
326330 - [ contain_string] ( algorithms/strings/contain_string.py )
327331 - [ count_binary_substring] ( algorithms/strings/count_binary_substring.py )
328332 - [ repeat_string] ( algorithms/strings/repeat_string.py )
0 commit comments