|
62 | 62 | * [Generate Parentheses Iterative](backtracking/generate_parentheses_iterative.py) |
63 | 63 | * [Hamiltonian Cycle](backtracking/hamiltonian_cycle.py) |
64 | 64 | * [Knight Tour](backtracking/knight_tour.py) |
| 65 | + * [M Coloring Problem](backtracking/m_coloring_problem.py) |
65 | 66 | * [Match Word Pattern](backtracking/match_word_pattern.py) |
66 | 67 | * [Minimax](backtracking/minimax.py) |
67 | 68 | * [N Queens](backtracking/n_queens.py) |
|
108 | 109 |
|
109 | 110 | ## [Blockchain](blockchain) |
110 | 111 | * [Diophantine Equation](blockchain/diophantine_equation.py) |
| 112 | + * [Merkle Tree](blockchain/merkle_tree.py) |
| 113 | + * [Simple Blockchain](blockchain/simple_blockchain.py) |
| 114 | + * [Simple Proof Of Work](blockchain/simple_proof_of_work.py) |
111 | 115 |
|
112 | 116 | ## [Boolean Algebra](boolean_algebra) |
113 | 117 | * [And Gate](boolean_algebra/and_gate.py) |
|
166 | 170 | * [Porta Cipher](ciphers/porta_cipher.py) |
167 | 171 | * [Rabin Miller](ciphers/rabin_miller.py) |
168 | 172 | * [Rail Fence Cipher](ciphers/rail_fence_cipher.py) |
| 173 | + * [Rc4](ciphers/rc4.py) |
169 | 174 | * [Rot13](ciphers/rot13.py) |
170 | 175 | * [Rsa Cipher](ciphers/rsa_cipher.py) |
171 | 176 | * [Rsa Factorization](ciphers/rsa_factorization.py) |
|
180 | 185 | * [Vernam Cipher](ciphers/vernam_cipher.py) |
181 | 186 | * [Vigenere Cipher](ciphers/vigenere_cipher.py) |
182 | 187 | * [Xor Cipher](ciphers/xor_cipher.py) |
| 188 | + * [Xtea](ciphers/xtea.py) |
183 | 189 |
|
184 | 190 | ## [Computer Vision](computer_vision) |
185 | 191 | * [Cnn Classification](computer_vision/cnn_classification.py) |
|
198 | 204 | ## [Conversions](conversions) |
199 | 205 | * [Astronomical Length Scale Conversion](conversions/astronomical_length_scale_conversion.py) |
200 | 206 | * [Binary To Decimal](conversions/binary_to_decimal.py) |
| 207 | + * [Binary To Excess3](conversions/binary_to_excess3.py) |
| 208 | + * [Binary To Gray](conversions/binary_to_gray.py) |
| 209 | + * [Binary To Gray Code](conversions/binary_to_gray_code.py) |
201 | 210 | * [Binary To Hexadecimal](conversions/binary_to_hexadecimal.py) |
202 | 211 | * [Binary To Octal](conversions/binary_to_octal.py) |
203 | 212 | * [Convert Number To Words](conversions/convert_number_to_words.py) |
204 | 213 | * [Decimal To Any](conversions/decimal_to_any.py) |
205 | 214 | * [Decimal To Binary](conversions/decimal_to_binary.py) |
206 | 215 | * [Decimal To Hexadecimal](conversions/decimal_to_hexadecimal.py) |
207 | 216 | * [Decimal To Octal](conversions/decimal_to_octal.py) |
| 217 | + * [Endianness](conversions/endianness.py) |
208 | 218 | * [Energy Conversions](conversions/energy_conversions.py) |
209 | 219 | * [Excel Title To Column](conversions/excel_title_to_column.py) |
210 | 220 | * [Hex To Bin](conversions/hex_to_bin.py) |
|
540 | 550 | ## [Geodesy](geodesy) |
541 | 551 | * [Haversine Distance](geodesy/haversine_distance.py) |
542 | 552 | * [Lamberts Ellipsoidal Distance](geodesy/lamberts_ellipsoidal_distance.py) |
| 553 | + * [Radar Target Calculation](geodesy/radar_target_calculation.py) |
543 | 554 |
|
544 | 555 | ## [Geometry](geometry) |
545 | 556 | * [Geometry](geometry/geometry.py) |
|
689 | 700 | * [Astar](machine_learning/astar.py) |
690 | 701 | * [Automatic Differentiation](machine_learning/automatic_differentiation.py) |
691 | 702 | * [Data Transformations](machine_learning/data_transformations.py) |
| 703 | + * [Dbscan](machine_learning/dbscan.py) |
692 | 704 | * [Decision Tree](machine_learning/decision_tree.py) |
693 | 705 | * [Dimensionality Reduction](machine_learning/dimensionality_reduction.py) |
694 | 706 | * [Federated Averaging](machine_learning/federated_averaging.py) |
|
0 commit comments