Python/maths
Shubham Lad a06995a686 add simple improved Sieve Of Eratosthenes Algorithm (#1412)
* add simple improved Sieve Of Eratosthenes Algorithm

* added doctests

* name changed
2019-10-21 20:10:19 +02:00
..
images Adds Gaussian Function in maths section (#1054) 2019-07-20 14:32:40 +02:00
__init__.py Update abs_Min.py (#1004) 2019-07-11 18:20:41 +02:00
3n+1.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
abs_max.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
abs_min.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
abs.py less code (#1292) 2019-10-08 13:24:01 +05:00
average_mean.py Update average_mean.py (#1293) 2019-10-07 23:26:40 +05:00
average_median.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
basic_maths.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
binary_exponentiation.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
collatz_sequence.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
explicit_euler.py added explicit euler's method (#1394) 2019-10-21 19:19:43 +02:00
extended_euclidean_algorithm.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
factorial_python.py rewrite the algorithm from scratch (#1351) 2019-10-18 07:27:55 +02:00
factorial_recursive.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
fermat_little_theorem.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
fibonacci_sequence_recursion.py Add Topological Sort (#1302) 2019-10-18 08:13:58 +02:00
fibonacci.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
find_max_recursion.py Divide and Conquer (#1308) 2019-10-18 06:20:36 +02:00
find_max.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
find_min_recursion.py Divide and Conquer (#1308) 2019-10-18 06:20:36 +02:00
find_min.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
gaussian.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
greatest_common_divisor.py Rename GCD File (#1354) 2019-10-15 00:05:51 +05:30
hardy_ramanujanalgo.py Implementation of Hardy Ramanujan Algorithm in /maths (#1355) 2019-10-19 06:02:38 +02:00
is_square_free.py Added Mobius Function (#1058) 2019-07-21 10:35:42 +02:00
jaccard_similarity.py adding jaccard similarity (#1270) 2019-10-04 09:59:45 +02:00
karatsuba.py Create karatsuba.py (#1309) 2019-10-08 17:25:50 +05:00
kth_lexicographic_permutation.py Add Kth lexicographic permutation (#1179) 2019-09-13 13:13:55 +02:00
largest_of_very_large_numbers.py LargestOfVeryLargeNumbers (#818) 2019-07-30 08:47:54 +02:00
least_common_multiple.py Feature/update least common multiple (#1352) 2019-10-18 07:35:29 +02:00
lucas_lehmer_primality_test.py Add Lucas_Lehmer_primality_test (#1050) 2019-07-30 18:00:24 +02:00
lucas_series.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
matrix_exponentiation.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
mobius_function.py Added Mobius Function (#1058) 2019-07-21 10:35:42 +02:00
modular_exponential.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
newton_raphson.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
polynomial_evaluation.py added horner's method (#1360) 2019-10-17 16:50:51 +02:00
prime_check.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
prime_factors.py Adds Gaussian Function in maths section (#1054) 2019-07-20 14:32:40 +02:00
prime_sieve_eratosthenes.py add simple improved Sieve Of Eratosthenes Algorithm (#1412) 2019-10-21 20:10:19 +02:00
qr_decomposition.py create qr_decomposition (#1363) 2019-10-18 06:48:16 +02:00
quadratic_equations_complex_numbers.py Add test for QuadraticEquation() (#1107) 2019-08-06 21:32:27 +02:00
radix2_fft.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
runge_kutta.py added runge-kutta (#1393) 2019-10-19 17:11:05 +08:00
segmented_sieve.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
sieve_of_eratosthenes.py Add doctest to maths/sieve_of_eratosthenes.py and remove other/finding_primes.py (#1078) 2019-07-26 12:25:38 +02:00
simpson_rule.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
softmax.py adding softmax function (#1267) 2019-10-03 16:30:36 +02:00
sum_of_arithmetic_series.py Add Topological Sort (#1302) 2019-10-18 08:13:58 +02:00
test_prime_check.py Add maths/test_prime_check.py (#1125) 2019-08-13 11:50:13 +02:00
trapezoidal_rule.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
volume.py Travis CI: Add a flake8 test for unused imports (#1038) 2019-07-25 13:19:00 +05:30
zellers_congruence.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00