@@ -72,7 +72,7 @@ If you want to uninstall algorithms, it is as simple as:
72
72
- [ move_zeros] ( algorithms/arrays/move_zeros.py )
73
73
- [ n_sum] ( algorithms/arrays/n_sum.py )
74
74
- [ automata] ( algorithms/automata )
75
- - [ DFA] ( algorithms/automata/DFA .py )
75
+ - [ DFA] ( algorithms/automata/dfa .py )
76
76
- [ backtrack] ( algorithms/backtrack )
77
77
- [ general_solution.md] ( algorithms/backtrack/ )
78
78
- [ add_operators] ( algorithms/backtrack/add_operators.py )
@@ -196,15 +196,16 @@ If you want to uninstall algorithms, it is as simple as:
196
196
- [ valid_sudoku] ( algorithms/map/valid_sudoku.py )
197
197
- [ word_pattern] ( algorithms/map/word_pattern.py )
198
198
- [ is_isomorphic] ( algorithms/map/is_isomorphic.py )
199
- - [ is_anagram] ( algorithms/map/is_anagram.py )
199
+ - [ is_anagram] ( algorithms/map/is_anagram.py )
200
200
- [ maths] ( algorithms/maths )
201
+ - [ power] ( algorithms/maths/power.py )
201
202
- [ base_conversion] ( algorithms/maths/base_conversion.py )
202
203
- [ combination] ( algorithms/maths/combination.py )
203
204
- [ cosine_similarity] ( algorithms/maths/cosine_similarity.py )
204
205
- [ decimal_to_binary_ip] ( algorithms/maths/decimal_to_binary_ip.py )
205
206
- [ euler_totient] ( algorithms/maths/euler_totient.py )
206
207
- [ extended_gcd] ( algorithms/maths/extended_gcd.py )
207
- - [ factorial] ( algorithms/maths/factorial.py )
208
+ - [ factorial] ( algorithms/maths/factorial.py )
208
209
- [ gcd/lcm] ( algorithms/maths/gcd.py )
209
210
- [ generate_strobogrammtic] ( algorithms/maths/generate_strobogrammtic.py )
210
211
- [ is_strobogrammatic] ( algorithms/maths/is_strobogrammatic.py )
@@ -258,6 +259,7 @@ If you want to uninstall algorithms, it is as simple as:
258
259
- [ search_rotate] ( algorithms/search/search_rotate.py )
259
260
- [ jump_search] ( algorithms/search/jump_search.py )
260
261
- [ next_greatest_letter] ( algorithms/search/next_greatest_letter.py )
262
+ - [ interpolation_search] ( algorithms/search/interpolation_search.py )
261
263
- [ set] ( algorithms/set )
262
264
- [ randomized_set] ( algorithms/set/randomized_set.py )
263
265
- [ set_covering] ( algorithms/set/set_covering.py )
@@ -283,6 +285,7 @@ If you want to uninstall algorithms, it is as simple as:
283
285
- [ selection_sort] ( algorithms/sort/selection_sort.py )
284
286
- [ shell_sort] ( algorithms/sort/shell_sort.py )
285
287
- [ sort_colors] ( algorithms/sort/sort_colors.py )
288
+ - [ stooge_sort] ( algorithms/sort/stooge_sort.py )
286
289
- [ top_sort] ( algorithms/sort/top_sort.py )
287
290
- [ wiggle_sort] ( algorithms/sort/wiggle_sort.py )
288
291
- [ stack] ( algorithms/stack )
@@ -323,6 +326,7 @@ If you want to uninstall algorithms, it is as simple as:
323
326
- [ judge_circle] ( algorithms/strings/judge_circle.py )
324
327
- [ strong_password] ( algorithms/strings/strong_password.py )
325
328
- [ caesar_cipher] ( algorithms/strings/caesar_cipher.py )
329
+ - [ check_pangram] (algorithms/strings/check_pangram.py
326
330
- [ contain_string] ( algorithms/strings/contain_string.py )
327
331
- [ count_binary_substring] ( algorithms/strings/count_binary_substring.py )
328
332
- [ repeat_string] ( algorithms/strings/repeat_string.py )
0 commit comments