|
1 | 1 |
|
2 |
| -## Arithmetic Analysis |
3 |
| - * [Bisection](arithmetic_analysis/bisection.py) |
4 |
| - * [Gaussian Elimination](arithmetic_analysis/gaussian_elimination.py) |
5 |
| - * [In Static Equilibrium](arithmetic_analysis/in_static_equilibrium.py) |
6 |
| - * [Intersection](arithmetic_analysis/intersection.py) |
7 |
| - * [Jacobi Iteration Method](arithmetic_analysis/jacobi_iteration_method.py) |
8 |
| - * [Lu Decomposition](arithmetic_analysis/lu_decomposition.py) |
9 |
| - * [Newton Forward Interpolation](arithmetic_analysis/newton_forward_interpolation.py) |
10 |
| - * [Newton Method](arithmetic_analysis/newton_method.py) |
11 |
| - * [Newton Raphson](arithmetic_analysis/newton_raphson.py) |
12 |
| - * [Newton Raphson New](arithmetic_analysis/newton_raphson_new.py) |
13 |
| - * [Secant Method](arithmetic_analysis/secant_method.py) |
14 |
| - |
15 | 2 | ## Audio Filters
|
16 | 3 | * [Butterworth Filter](audio_filters/butterworth_filter.py)
|
17 | 4 | * [Iir Filter](audio_filters/iir_filter.py)
|
|
170 | 157 | * [Prefix Conversions](conversions/prefix_conversions.py)
|
171 | 158 | * [Prefix Conversions String](conversions/prefix_conversions_string.py)
|
172 | 159 | * [Pressure Conversions](conversions/pressure_conversions.py)
|
| 160 | + * [Rgb Cmyk Conversion](conversions/rgb_cmyk_conversion.py) |
173 | 161 | * [Rgb Hsv Conversion](conversions/rgb_hsv_conversion.py)
|
174 | 162 | * [Roman Numerals](conversions/roman_numerals.py)
|
175 | 163 | * [Speed Conversions](conversions/speed_conversions.py)
|
|
211 | 199 | * [Lowest Common Ancestor](data_structures/binary_tree/lowest_common_ancestor.py)
|
212 | 200 | * [Maximum Fenwick Tree](data_structures/binary_tree/maximum_fenwick_tree.py)
|
213 | 201 | * [Merge Two Binary Trees](data_structures/binary_tree/merge_two_binary_trees.py)
|
| 202 | + * [Mirror Binary Tree](data_structures/binary_tree/mirror_binary_tree.py) |
214 | 203 | * [Non Recursive Segment Tree](data_structures/binary_tree/non_recursive_segment_tree.py)
|
215 | 204 | * [Number Of Possible Binary Trees](data_structures/binary_tree/number_of_possible_binary_trees.py)
|
216 | 205 | * [Red Black Tree](data_structures/binary_tree/red_black_tree.py)
|
|
246 | 235 | * [Deque Doubly](data_structures/linked_list/deque_doubly.py)
|
247 | 236 | * [Doubly Linked List](data_structures/linked_list/doubly_linked_list.py)
|
248 | 237 | * [Doubly Linked List Two](data_structures/linked_list/doubly_linked_list_two.py)
|
| 238 | + * [Floyds Cycle Detection](data_structures/linked_list/floyds_cycle_detection.py) |
249 | 239 | * [From Sequence](data_structures/linked_list/from_sequence.py)
|
250 | 240 | * [Has Loop](data_structures/linked_list/has_loop.py)
|
251 | 241 | * [Is Palindrome](data_structures/linked_list/is_palindrome.py)
|
|
407 | 397 | * [Interest](financial/interest.py)
|
408 | 398 | * [Present Value](financial/present_value.py)
|
409 | 399 | * [Price Plus Tax](financial/price_plus_tax.py)
|
| 400 | + * [Simple Moving Average](financial/simple_moving_average.py) |
410 | 401 |
|
411 | 402 | ## Fractals
|
412 | 403 | * [Julia Sets](fractals/julia_sets.py)
|
|
520 | 511 | * [Test Knapsack](knapsack/tests/test_knapsack.py)
|
521 | 512 |
|
522 | 513 | ## Linear Algebra
|
| 514 | + * [Gaussian Elimination](linear_algebra/gaussian_elimination.py) |
| 515 | + * [Jacobi Iteration Method](linear_algebra/jacobi_iteration_method.py) |
| 516 | + * [Lu Decomposition](linear_algebra/lu_decomposition.py) |
523 | 517 | * Src
|
524 | 518 | * [Conjugate Gradient](linear_algebra/src/conjugate_gradient.py)
|
525 | 519 | * [Lib](linear_algebra/src/lib.py)
|
|
583 | 577 | * [Binary Multiplication](maths/binary_multiplication.py)
|
584 | 578 | * [Binomial Coefficient](maths/binomial_coefficient.py)
|
585 | 579 | * [Binomial Distribution](maths/binomial_distribution.py)
|
586 |
| - * [Bisection](maths/bisection.py) |
587 | 580 | * [Ceil](maths/ceil.py)
|
588 | 581 | * [Chebyshev Distance](maths/chebyshev_distance.py)
|
589 | 582 | * [Check Polygon](maths/check_polygon.py)
|
|
617 | 610 | * [Germain Primes](maths/germain_primes.py)
|
618 | 611 | * [Greatest Common Divisor](maths/greatest_common_divisor.py)
|
619 | 612 | * [Hardy Ramanujanalgo](maths/hardy_ramanujanalgo.py)
|
620 |
| - * [Integration By Simpson Approx](maths/integration_by_simpson_approx.py) |
621 | 613 | * [Interquartile Range](maths/interquartile_range.py)
|
622 | 614 | * [Is Int Palindrome](maths/is_int_palindrome.py)
|
623 | 615 | * [Is Ip V4 Address Valid](maths/is_ip_v4_address_valid.py)
|
|
644 | 636 | * [Modular Exponential](maths/modular_exponential.py)
|
645 | 637 | * [Monte Carlo](maths/monte_carlo.py)
|
646 | 638 | * [Monte Carlo Dice](maths/monte_carlo_dice.py)
|
647 |
| - * [Nevilles Method](maths/nevilles_method.py) |
648 |
| - * [Newton Raphson](maths/newton_raphson.py) |
649 | 639 | * [Number Of Digits](maths/number_of_digits.py)
|
650 |
| - * [Numerical Integration](maths/numerical_integration.py) |
| 640 | + * Numerical Analysis |
| 641 | + * [Bisection](maths/numerical_analysis/bisection.py) |
| 642 | + * [Bisection 2](maths/numerical_analysis/bisection_2.py) |
| 643 | + * [Integration By Simpson Approx](maths/numerical_analysis/integration_by_simpson_approx.py) |
| 644 | + * [Intersection](maths/numerical_analysis/intersection.py) |
| 645 | + * [Nevilles Method](maths/numerical_analysis/nevilles_method.py) |
| 646 | + * [Newton Forward Interpolation](maths/numerical_analysis/newton_forward_interpolation.py) |
| 647 | + * [Newton Raphson](maths/numerical_analysis/newton_raphson.py) |
| 648 | + * [Numerical Integration](maths/numerical_analysis/numerical_integration.py) |
| 649 | + * [Runge Kutta](maths/numerical_analysis/runge_kutta.py) |
| 650 | + * [Runge Kutta Fehlberg 45](maths/numerical_analysis/runge_kutta_fehlberg_45.py) |
| 651 | + * [Secant Method](maths/numerical_analysis/secant_method.py) |
| 652 | + * [Simpson Rule](maths/numerical_analysis/simpson_rule.py) |
| 653 | + * [Square Root](maths/numerical_analysis/square_root.py) |
651 | 654 | * [Odd Sieve](maths/odd_sieve.py)
|
652 | 655 | * [Perfect Cube](maths/perfect_cube.py)
|
653 | 656 | * [Perfect Number](maths/perfect_number.py)
|
|
673 | 676 | * [Radians](maths/radians.py)
|
674 | 677 | * [Radix2 Fft](maths/radix2_fft.py)
|
675 | 678 | * [Remove Digit](maths/remove_digit.py)
|
676 |
| - * [Runge Kutta](maths/runge_kutta.py) |
677 |
| - * [Runge Kutta Fehlberg 45](maths/runge_kutta_fehlberg_45.py) |
678 | 679 | * [Segmented Sieve](maths/segmented_sieve.py)
|
679 | 680 | * Series
|
680 | 681 | * [Arithmetic](maths/series/arithmetic.py)
|
|
687 | 688 | * [Sieve Of Eratosthenes](maths/sieve_of_eratosthenes.py)
|
688 | 689 | * [Sigmoid](maths/sigmoid.py)
|
689 | 690 | * [Signum](maths/signum.py)
|
690 |
| - * [Simpson Rule](maths/simpson_rule.py) |
691 | 691 | * [Simultaneous Linear Equation Solver](maths/simultaneous_linear_equation_solver.py)
|
692 | 692 | * [Sin](maths/sin.py)
|
693 | 693 | * [Sock Merchant](maths/sock_merchant.py)
|
|
707 | 707 | * [Polygonal Numbers](maths/special_numbers/polygonal_numbers.py)
|
708 | 708 | * [Pronic Number](maths/special_numbers/pronic_number.py)
|
709 | 709 | * [Proth Number](maths/special_numbers/proth_number.py)
|
| 710 | + * [Triangular Numbers](maths/special_numbers/triangular_numbers.py) |
710 | 711 | * [Ugly Numbers](maths/special_numbers/ugly_numbers.py)
|
711 | 712 | * [Weird Number](maths/special_numbers/weird_number.py)
|
712 |
| - * [Square Root](maths/square_root.py) |
713 | 713 | * [Sum Of Arithmetic Series](maths/sum_of_arithmetic_series.py)
|
714 | 714 | * [Sum Of Digits](maths/sum_of_digits.py)
|
715 | 715 | * [Sum Of Geometric Progression](maths/sum_of_geometric_progression.py)
|
|
812 | 812 | * [Horizontal Projectile Motion](physics/horizontal_projectile_motion.py)
|
813 | 813 | * [Hubble Parameter](physics/hubble_parameter.py)
|
814 | 814 | * [Ideal Gas Law](physics/ideal_gas_law.py)
|
| 815 | + * [In Static Equilibrium](physics/in_static_equilibrium.py) |
815 | 816 | * [Kinetic Energy](physics/kinetic_energy.py)
|
816 | 817 | * [Lorentz Transformation Four Vector](physics/lorentz_transformation_four_vector.py)
|
817 | 818 | * [Malus Law](physics/malus_law.py)
|
| 819 | + * [Mass Energy Equivalence](physics/mass_energy_equivalence.py) |
818 | 820 | * [Mirror Formulae](physics/mirror_formulae.py)
|
819 | 821 | * [N Body Simulation](physics/n_body_simulation.py)
|
820 | 822 | * [Newtons Law Of Gravitation](physics/newtons_law_of_gravitation.py)
|
|
826 | 828 | * [Shear Stress](physics/shear_stress.py)
|
827 | 829 | * [Speed Of Sound](physics/speed_of_sound.py)
|
828 | 830 | * [Speeds Of Gas Molecules](physics/speeds_of_gas_molecules.py)
|
| 831 | + * [Terminal Velocity](physics/terminal_velocity.py) |
829 | 832 |
|
830 | 833 | ## Project Euler
|
831 | 834 | * Problem 001
|
|
0 commit comments