|
37 | 37 |
|
38 | 38 | ## Bit Manipulation |
39 | 39 | * [Binary And Operator](bit_manipulation/binary_and_operator.py) |
| 40 | + * [Binary Coded Decimal](bit_manipulation/binary_coded_decimal.py) |
40 | 41 | * [Binary Count Setbits](bit_manipulation/binary_count_setbits.py) |
41 | 42 | * [Binary Count Trailing Zeros](bit_manipulation/binary_count_trailing_zeros.py) |
42 | 43 | * [Binary Or Operator](bit_manipulation/binary_or_operator.py) |
|
57 | 58 | * [Power Of 4](bit_manipulation/power_of_4.py) |
58 | 59 | * [Reverse Bits](bit_manipulation/reverse_bits.py) |
59 | 60 | * [Single Bit Manipulation Operations](bit_manipulation/single_bit_manipulation_operations.py) |
| 61 | + * [Swap All Odd And Even Bits](bit_manipulation/swap_all_odd_and_even_bits.py) |
60 | 62 |
|
61 | 63 | ## Blockchain |
62 | 64 | * [Diophantine Equation](blockchain/diophantine_equation.py) |
|
124 | 126 | * [Transposition Cipher](ciphers/transposition_cipher.py) |
125 | 127 | * [Transposition Cipher Encrypt Decrypt File](ciphers/transposition_cipher_encrypt_decrypt_file.py) |
126 | 128 | * [Trifid Cipher](ciphers/trifid_cipher.py) |
| 129 | + * [Vernam Cipher](ciphers/vernam_cipher.py) |
127 | 130 | * [Vigenere Cipher](ciphers/vigenere_cipher.py) |
128 | 131 | * [Xor Cipher](ciphers/xor_cipher.py) |
129 | 132 |
|
|
163 | 166 | * [Molecular Chemistry](conversions/molecular_chemistry.py) |
164 | 167 | * [Octal To Binary](conversions/octal_to_binary.py) |
165 | 168 | * [Octal To Decimal](conversions/octal_to_decimal.py) |
| 169 | + * [Octal To Hexadecimal](conversions/octal_to_hexadecimal.py) |
166 | 170 | * [Prefix Conversions](conversions/prefix_conversions.py) |
167 | 171 | * [Prefix Conversions String](conversions/prefix_conversions_string.py) |
168 | 172 | * [Pressure Conversions](conversions/pressure_conversions.py) |
|
183 | 187 | * [Prefix Sum](data_structures/arrays/prefix_sum.py) |
184 | 188 | * [Product Sum](data_structures/arrays/product_sum.py) |
185 | 189 | * [Sparse Table](data_structures/arrays/sparse_table.py) |
| 190 | + * [Sudoku Solver](data_structures/arrays/sudoku_solver.py) |
186 | 191 | * Binary Tree |
187 | 192 | * [Avl Tree](data_structures/binary_tree/avl_tree.py) |
188 | 193 | * [Basic Binary Tree](data_structures/binary_tree/basic_binary_tree.py) |
|
548 | 553 | * Loss Functions |
549 | 554 | * [Binary Cross Entropy](machine_learning/loss_functions/binary_cross_entropy.py) |
550 | 555 | * [Categorical Cross Entropy](machine_learning/loss_functions/categorical_cross_entropy.py) |
| 556 | + * [Hinge Loss](machine_learning/loss_functions/hinge_loss.py) |
551 | 557 | * [Huber Loss](machine_learning/loss_functions/huber_loss.py) |
552 | 558 | * [Mean Squared Error](machine_learning/loss_functions/mean_squared_error.py) |
| 559 | + * [Mean Squared Logarithmic Error](machine_learning/loss_functions/mean_squared_logarithmic_error.py) |
553 | 560 | * [Mfcc](machine_learning/mfcc.py) |
554 | 561 | * [Multilayer Perceptron Classifier](machine_learning/multilayer_perceptron_classifier.py) |
555 | 562 | * [Polynomial Regression](machine_learning/polynomial_regression.py) |
|
734 | 741 | * [Inverse Of Matrix](matrix/inverse_of_matrix.py) |
735 | 742 | * [Largest Square Area In Matrix](matrix/largest_square_area_in_matrix.py) |
736 | 743 | * [Matrix Class](matrix/matrix_class.py) |
| 744 | + * [Matrix Multiplication Recursion](matrix/matrix_multiplication_recursion.py) |
737 | 745 | * [Matrix Operation](matrix/matrix_operation.py) |
738 | 746 | * [Max Area Of Island](matrix/max_area_of_island.py) |
739 | 747 | * [Median Matrix](matrix/median_matrix.py) |
|
760 | 768 | * [Mish](neural_network/activation_functions/mish.py) |
761 | 769 | * [Rectified Linear Unit](neural_network/activation_functions/rectified_linear_unit.py) |
762 | 770 | * [Scaled Exponential Linear Unit](neural_network/activation_functions/scaled_exponential_linear_unit.py) |
763 | | - * [Sigmoid Linear Unit](neural_network/activation_functions/sigmoid_linear_unit.py) |
764 | 771 | * [Soboleva Modified Hyperbolic Tangent](neural_network/activation_functions/soboleva_modified_hyperbolic_tangent.py) |
765 | 772 | * [Softplus](neural_network/activation_functions/softplus.py) |
766 | 773 | * [Squareplus](neural_network/activation_functions/squareplus.py) |
| 774 | + * [Swish](neural_network/activation_functions/swish.py) |
767 | 775 | * [Back Propagation Neural Network](neural_network/back_propagation_neural_network.py) |
768 | 776 | * [Convolution Neural Network](neural_network/convolution_neural_network.py) |
769 | 777 | * [Perceptron](neural_network/perceptron.py) |
|
1185 | 1193 | * [Quick Sort](sorts/quick_sort.py) |
1186 | 1194 | * [Quick Sort 3 Partition](sorts/quick_sort_3_partition.py) |
1187 | 1195 | * [Radix Sort](sorts/radix_sort.py) |
1188 | | - * [Recursive Bubble Sort](sorts/recursive_bubble_sort.py) |
1189 | 1196 | * [Recursive Insertion Sort](sorts/recursive_insertion_sort.py) |
1190 | 1197 | * [Recursive Mergesort Array](sorts/recursive_mergesort_array.py) |
1191 | 1198 | * [Recursive Quick Sort](sorts/recursive_quick_sort.py) |
|
1216 | 1223 | * [Damerau Levenshtein Distance](strings/damerau_levenshtein_distance.py) |
1217 | 1224 | * [Detecting English Programmatically](strings/detecting_english_programmatically.py) |
1218 | 1225 | * [Dna](strings/dna.py) |
| 1226 | + * [Edit Distance](strings/edit_distance.py) |
1219 | 1227 | * [Frequency Finder](strings/frequency_finder.py) |
1220 | 1228 | * [Hamming Distance](strings/hamming_distance.py) |
1221 | 1229 | * [Indian Phone Validator](strings/indian_phone_validator.py) |
1222 | 1230 | * [Is Contains Unique Chars](strings/is_contains_unique_chars.py) |
1223 | 1231 | * [Is Isogram](strings/is_isogram.py) |
1224 | 1232 | * [Is Pangram](strings/is_pangram.py) |
| 1233 | + * [Is Polish National Id](strings/is_polish_national_id.py) |
1225 | 1234 | * [Is Spain National Id](strings/is_spain_national_id.py) |
1226 | 1235 | * [Is Srilankan Phone Number](strings/is_srilankan_phone_number.py) |
1227 | 1236 | * [Is Valid Email Address](strings/is_valid_email_address.py) |
|
0 commit comments