Skip to content

Commit 7cb52b5

Browse files
github-actionsgithub-actions
github-actions
authored and
github-actions
committed
updating DIRECTORY.md
1 parent ad9948d commit 7cb52b5

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Diff for: DIRECTORY.md

+17
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
* [All Subsequences](backtracking/all_subsequences.py)
1111
* [Coloring](backtracking/coloring.py)
1212
* [Combination Sum](backtracking/combination_sum.py)
13+
* [Crossword Puzzle Solver](backtracking/crossword_puzzle_solver.py)
14+
* [Generate Parentheses](backtracking/generate_parentheses.py)
1315
* [Hamiltonian Cycle](backtracking/hamiltonian_cycle.py)
1416
* [Knight Tour](backtracking/knight_tour.py)
1517
* [Match Word Pattern](backtracking/match_word_pattern.py)
@@ -35,6 +37,7 @@
3537
* [Count 1S Brian Kernighan Method](bit_manipulation/count_1s_brian_kernighan_method.py)
3638
* [Count Number Of One Bits](bit_manipulation/count_number_of_one_bits.py)
3739
* [Excess 3 Code](bit_manipulation/excess_3_code.py)
40+
* [Find Previous Power Of Two](bit_manipulation/find_previous_power_of_two.py)
3841
* [Gray Code Sequence](bit_manipulation/gray_code_sequence.py)
3942
* [Highest Set Bit](bit_manipulation/highest_set_bit.py)
4043
* [Index Of Rightmost Set Bit](bit_manipulation/index_of_rightmost_set_bit.py)
@@ -54,6 +57,8 @@
5457
## Boolean Algebra
5558
* [And Gate](boolean_algebra/and_gate.py)
5659
* [Imply Gate](boolean_algebra/imply_gate.py)
60+
* [Karnaugh Map Simplification](boolean_algebra/karnaugh_map_simplification.py)
61+
* [Multiplexer](boolean_algebra/multiplexer.py)
5762
* [Nand Gate](boolean_algebra/nand_gate.py)
5863
* [Nimply Gate](boolean_algebra/nimply_gate.py)
5964
* [Nor Gate](boolean_algebra/nor_gate.py)
@@ -108,6 +113,7 @@
108113
* [Rsa Cipher](ciphers/rsa_cipher.py)
109114
* [Rsa Factorization](ciphers/rsa_factorization.py)
110115
* [Rsa Key Generator](ciphers/rsa_key_generator.py)
116+
* [Running Key Cipher](ciphers/running_key_cipher.py)
111117
* [Shuffled Shift Cipher](ciphers/shuffled_shift_cipher.py)
112118
* [Simple Keyword Cypher](ciphers/simple_keyword_cypher.py)
113119
* [Simple Substitution Cipher](ciphers/simple_substitution_cipher.py)
@@ -150,6 +156,7 @@
150156
* [Excel Title To Column](conversions/excel_title_to_column.py)
151157
* [Hex To Bin](conversions/hex_to_bin.py)
152158
* [Hexadecimal To Decimal](conversions/hexadecimal_to_decimal.py)
159+
* [Ipv4 Conversion](conversions/ipv4_conversion.py)
153160
* [Length Conversion](conversions/length_conversion.py)
154161
* [Molecular Chemistry](conversions/molecular_chemistry.py)
155162
* [Octal To Binary](conversions/octal_to_binary.py)
@@ -209,6 +216,7 @@
209216
* [Red Black Tree](data_structures/binary_tree/red_black_tree.py)
210217
* [Segment Tree](data_structures/binary_tree/segment_tree.py)
211218
* [Segment Tree Other](data_structures/binary_tree/segment_tree_other.py)
219+
* [Serialize Deserialize Binary Tree](data_structures/binary_tree/serialize_deserialize_binary_tree.py)
212220
* [Symmetric Tree](data_structures/binary_tree/symmetric_tree.py)
213221
* [Treap](data_structures/binary_tree/treap.py)
214222
* [Wavelet Tree](data_structures/binary_tree/wavelet_tree.py)
@@ -410,6 +418,9 @@
410418
* [Mandelbrot](fractals/mandelbrot.py)
411419
* [Sierpinski Triangle](fractals/sierpinski_triangle.py)
412420

421+
## Fuzzy Logic
422+
* [Fuzzy Operations](fuzzy_logic/fuzzy_operations.py)
423+
413424
## Genetic Algorithm
414425
* [Basic String](genetic_algorithm/basic_string.py)
415426

@@ -521,6 +532,8 @@
521532
* [Lu Decomposition](linear_algebra/lu_decomposition.py)
522533
* Src
523534
* [Conjugate Gradient](linear_algebra/src/conjugate_gradient.py)
535+
* Gaussian Elimination Pivoting
536+
* [Gaussian Elimination Pivoting](linear_algebra/src/gaussian_elimination_pivoting/gaussian_elimination_pivoting.py)
524537
* [Lib](linear_algebra/src/lib.py)
525538
* [Polynom For Points](linear_algebra/src/polynom_for_points.py)
526539
* [Power Iteration](linear_algebra/src/power_iteration.py)
@@ -618,12 +631,14 @@
618631
* [Germain Primes](maths/germain_primes.py)
619632
* [Greatest Common Divisor](maths/greatest_common_divisor.py)
620633
* [Hardy Ramanujanalgo](maths/hardy_ramanujanalgo.py)
634+
* [Integer Square Root](maths/integer_square_root.py)
621635
* [Interquartile Range](maths/interquartile_range.py)
622636
* [Is Int Palindrome](maths/is_int_palindrome.py)
623637
* [Is Ip V4 Address Valid](maths/is_ip_v4_address_valid.py)
624638
* [Is Square Free](maths/is_square_free.py)
625639
* [Jaccard Similarity](maths/jaccard_similarity.py)
626640
* [Joint Probability Distribution](maths/joint_probability_distribution.py)
641+
* [Josephus Problem](maths/josephus_problem.py)
627642
* [Juggler Sequence](maths/juggler_sequence.py)
628643
* [Karatsuba](maths/karatsuba.py)
629644
* [Kth Lexicographic Permutation](maths/kth_lexicographic_permutation.py)
@@ -646,6 +661,7 @@
646661
* [Monte Carlo Dice](maths/monte_carlo_dice.py)
647662
* [Number Of Digits](maths/number_of_digits.py)
648663
* Numerical Analysis
664+
* [Adams Bashforth](maths/numerical_analysis/adams_bashforth.py)
649665
* [Bisection](maths/numerical_analysis/bisection.py)
650666
* [Bisection 2](maths/numerical_analysis/bisection_2.py)
651667
* [Integration By Simpson Approx](maths/numerical_analysis/integration_by_simpson_approx.py)
@@ -1223,6 +1239,7 @@
12231239
* [Anagrams](strings/anagrams.py)
12241240
* [Autocomplete Using Trie](strings/autocomplete_using_trie.py)
12251241
* [Barcode Validator](strings/barcode_validator.py)
1242+
* [Bitap String Match](strings/bitap_string_match.py)
12261243
* [Boyer Moore Search](strings/boyer_moore_search.py)
12271244
* [Camel Case To Snake Case](strings/camel_case_to_snake_case.py)
12281245
* [Can String Be Rearranged As Palindrome](strings/can_string_be_rearranged_as_palindrome.py)

0 commit comments

Comments
 (0)