|
56 | 56 |
|
57 | 57 | ## Boolean Algebra
|
58 | 58 | * [And Gate](boolean_algebra/and_gate.py)
|
| 59 | + * [Nand Gate](boolean_algebra/nand_gate.py) |
59 | 60 | * [Norgate](boolean_algebra/norgate.py)
|
| 61 | + * [Not Gate](boolean_algebra/not_gate.py) |
| 62 | + * [Or Gate](boolean_algebra/or_gate.py) |
60 | 63 | * [Quine Mc Cluskey](boolean_algebra/quine_mc_cluskey.py)
|
| 64 | + * [Xnor Gate](boolean_algebra/xnor_gate.py) |
| 65 | + * [Xor Gate](boolean_algebra/xor_gate.py) |
61 | 66 |
|
62 | 67 | ## Cellular Automata
|
63 | 68 | * [Conways Game Of Life](cellular_automata/conways_game_of_life.py)
|
|
288 | 293 | * [Iterating Through Submasks](dynamic_programming/iterating_through_submasks.py)
|
289 | 294 | * [Knapsack](dynamic_programming/knapsack.py)
|
290 | 295 | * [Longest Common Subsequence](dynamic_programming/longest_common_subsequence.py)
|
| 296 | + * [Longest Common Substring](dynamic_programming/longest_common_substring.py) |
291 | 297 | * [Longest Increasing Subsequence](dynamic_programming/longest_increasing_subsequence.py)
|
292 | 298 | * [Longest Increasing Subsequence O(Nlogn)](dynamic_programming/longest_increasing_subsequence_o(nlogn).py)
|
293 | 299 | * [Longest Sub Array](dynamic_programming/longest_sub_array.py)
|
|
298 | 304 | * [Minimum Coin Change](dynamic_programming/minimum_coin_change.py)
|
299 | 305 | * [Minimum Cost Path](dynamic_programming/minimum_cost_path.py)
|
300 | 306 | * [Minimum Partition](dynamic_programming/minimum_partition.py)
|
| 307 | + * [Minimum Squares To Represent A Number](dynamic_programming/minimum_squares_to_represent_a_number.py) |
301 | 308 | * [Minimum Steps To One](dynamic_programming/minimum_steps_to_one.py)
|
302 | 309 | * [Optimal Binary Search Tree](dynamic_programming/optimal_binary_search_tree.py)
|
303 | 310 | * [Rod Cutting](dynamic_programming/rod_cutting.py)
|
|
474 | 481 | * [Add](maths/add.py)
|
475 | 482 | * [Aliquot Sum](maths/aliquot_sum.py)
|
476 | 483 | * [Allocation Number](maths/allocation_number.py)
|
| 484 | + * [Arc Length](maths/arc_length.py) |
477 | 485 | * [Area](maths/area.py)
|
478 | 486 | * [Area Under Curve](maths/area_under_curve.py)
|
479 | 487 | * [Armstrong Numbers](maths/armstrong_numbers.py)
|
|
609 | 617 | ## Matrix
|
610 | 618 | * [Binary Search Matrix](matrix/binary_search_matrix.py)
|
611 | 619 | * [Count Islands In Matrix](matrix/count_islands_in_matrix.py)
|
| 620 | + * [Cramers Rule 2X2](matrix/cramers_rule_2x2.py) |
612 | 621 | * [Inverse Of Matrix](matrix/inverse_of_matrix.py)
|
| 622 | + * [Largest Square Area In Matrix](matrix/largest_square_area_in_matrix.py) |
613 | 623 | * [Matrix Class](matrix/matrix_class.py)
|
614 | 624 | * [Matrix Operation](matrix/matrix_operation.py)
|
615 | 625 | * [Max Area Of Island](matrix/max_area_of_island.py)
|
|
657 | 667 | ## Physics
|
658 | 668 | * [Casimir Effect](physics/casimir_effect.py)
|
659 | 669 | * [Horizontal Projectile Motion](physics/horizontal_projectile_motion.py)
|
| 670 | + * [Kinetic Energy](physics/kinetic_energy.py) |
660 | 671 | * [Lorentz Transformation Four Vector](physics/lorentz_transformation_four_vector.py)
|
661 | 672 | * [N Body Simulation](physics/n_body_simulation.py)
|
662 | 673 | * [Newtons Law Of Gravitation](physics/newtons_law_of_gravitation.py)
|
|
948 | 959 | * [Not Gate](quantum/not_gate.py)
|
949 | 960 | * [Q Full Adder](quantum/q_full_adder.py)
|
950 | 961 | * [Quantum Entanglement](quantum/quantum_entanglement.py)
|
951 |
| - * [Quantum Random](quantum/quantum_random.py) |
952 | 962 | * [Ripple Adder Classic](quantum/ripple_adder_classic.py)
|
953 | 963 | * [Single Qubit Measure](quantum/single_qubit_measure.py)
|
954 | 964 | * [Superdense Coding](quantum/superdense_coding.py)
|
|
1048 | 1058 | * [Hamming Distance](strings/hamming_distance.py)
|
1049 | 1059 | * [Indian Phone Validator](strings/indian_phone_validator.py)
|
1050 | 1060 | * [Is Contains Unique Chars](strings/is_contains_unique_chars.py)
|
| 1061 | + * [Is Isogram](strings/is_isogram.py) |
1051 | 1062 | * [Is Palindrome](strings/is_palindrome.py)
|
1052 | 1063 | * [Is Pangram](strings/is_pangram.py)
|
1053 | 1064 | * [Is Spain National Id](strings/is_spain_national_id.py)
|
|
0 commit comments