|
34 | 34 | * [Bitwise Addition Recursive](bit_manipulation/bitwise_addition_recursive.py)
|
35 | 35 | * [Count 1S Brian Kernighan Method](bit_manipulation/count_1s_brian_kernighan_method.py)
|
36 | 36 | * [Count Number Of One Bits](bit_manipulation/count_number_of_one_bits.py)
|
| 37 | + * [Excess 3 Code](bit_manipulation/excess_3_code.py) |
37 | 38 | * [Gray Code Sequence](bit_manipulation/gray_code_sequence.py)
|
38 | 39 | * [Highest Set Bit](bit_manipulation/highest_set_bit.py)
|
39 | 40 | * [Index Of Rightmost Set Bit](bit_manipulation/index_of_rightmost_set_bit.py)
|
|
170 | 171 | * Arrays
|
171 | 172 | * [Equilibrium Index In Array](data_structures/arrays/equilibrium_index_in_array.py)
|
172 | 173 | * [Find Triplets With 0 Sum](data_structures/arrays/find_triplets_with_0_sum.py)
|
| 174 | + * [Index 2D Array In 1D](data_structures/arrays/index_2d_array_in_1d.py) |
| 175 | + * [Kth Largest Element](data_structures/arrays/kth_largest_element.py) |
173 | 176 | * [Median Two Array](data_structures/arrays/median_two_array.py)
|
| 177 | + * [Monotonic Array](data_structures/arrays/monotonic_array.py) |
174 | 178 | * [Pairs With Given Sum](data_structures/arrays/pairs_with_given_sum.py)
|
175 | 179 | * [Permutations](data_structures/arrays/permutations.py)
|
176 | 180 | * [Prefix Sum](data_structures/arrays/prefix_sum.py)
|
|
368 | 372 | ## Electronics
|
369 | 373 | * [Apparent Power](electronics/apparent_power.py)
|
370 | 374 | * [Builtin Voltage](electronics/builtin_voltage.py)
|
| 375 | + * [Capacitor Equivalence](electronics/capacitor_equivalence.py) |
371 | 376 | * [Carrier Concentration](electronics/carrier_concentration.py)
|
372 | 377 | * [Charging Capacitor](electronics/charging_capacitor.py)
|
373 | 378 | * [Charging Inductor](electronics/charging_inductor.py)
|
|
531 | 536 | ## Machine Learning
|
532 | 537 | * [Apriori Algorithm](machine_learning/apriori_algorithm.py)
|
533 | 538 | * [Astar](machine_learning/astar.py)
|
| 539 | + * [Automatic Differentiation](machine_learning/automatic_differentiation.py) |
534 | 540 | * [Data Transformations](machine_learning/data_transformations.py)
|
535 | 541 | * [Decision Tree](machine_learning/decision_tree.py)
|
536 | 542 | * [Dimensionality Reduction](machine_learning/dimensionality_reduction.py)
|
537 | 543 | * Forecasting
|
538 | 544 | * [Run](machine_learning/forecasting/run.py)
|
539 | 545 | * [Frequent Pattern Growth](machine_learning/frequent_pattern_growth.py)
|
| 546 | + * [Gradient Boosting Classifier](machine_learning/gradient_boosting_classifier.py) |
540 | 547 | * [Gradient Descent](machine_learning/gradient_descent.py)
|
541 | 548 | * [K Means Clust](machine_learning/k_means_clust.py)
|
542 | 549 | * [K Nearest Neighbours](machine_learning/k_nearest_neighbours.py)
|
|
598 | 605 | * [Extended Euclidean Algorithm](maths/extended_euclidean_algorithm.py)
|
599 | 606 | * [Factorial](maths/factorial.py)
|
600 | 607 | * [Factors](maths/factors.py)
|
| 608 | + * [Fast Inverse Sqrt](maths/fast_inverse_sqrt.py) |
601 | 609 | * [Fermat Little Theorem](maths/fermat_little_theorem.py)
|
602 | 610 | * [Fibonacci](maths/fibonacci.py)
|
603 | 611 | * [Find Max](maths/find_max.py)
|
|
648 | 656 | * [Numerical Integration](maths/numerical_analysis/numerical_integration.py)
|
649 | 657 | * [Runge Kutta](maths/numerical_analysis/runge_kutta.py)
|
650 | 658 | * [Runge Kutta Fehlberg 45](maths/numerical_analysis/runge_kutta_fehlberg_45.py)
|
| 659 | + * [Runge Kutta Gills](maths/numerical_analysis/runge_kutta_gills.py) |
651 | 660 | * [Secant Method](maths/numerical_analysis/secant_method.py)
|
652 | 661 | * [Simpson Rule](maths/numerical_analysis/simpson_rule.py)
|
653 | 662 | * [Square Root](maths/numerical_analysis/square_root.py)
|
|
814 | 823 | * [Ideal Gas Law](physics/ideal_gas_law.py)
|
815 | 824 | * [In Static Equilibrium](physics/in_static_equilibrium.py)
|
816 | 825 | * [Kinetic Energy](physics/kinetic_energy.py)
|
| 826 | + * [Lens Formulae](physics/lens_formulae.py) |
817 | 827 | * [Lorentz Transformation Four Vector](physics/lorentz_transformation_four_vector.py)
|
818 | 828 | * [Malus Law](physics/malus_law.py)
|
819 | 829 | * [Mass Energy Equivalence](physics/mass_energy_equivalence.py)
|
|
0 commit comments