|
274 | 274 | * [Test Send File](https://github.com/TheAlgorithms/Python/blob/master/file_transfer/tests/test_send_file.py)
|
275 | 275 |
|
276 | 276 | ## Fractals
|
| 277 | + * [Julia Sets](https://github.com/TheAlgorithms/Python/blob/master/fractals/julia_sets.py) |
277 | 278 | * [Koch Snowflake](https://github.com/TheAlgorithms/Python/blob/master/fractals/koch_snowflake.py)
|
278 | 279 | * [Mandelbrot](https://github.com/TheAlgorithms/Python/blob/master/fractals/mandelbrot.py)
|
279 | 280 | * [Sierpinski Triangle](https://github.com/TheAlgorithms/Python/blob/master/fractals/sierpinski_triangle.py)
|
|
424 | 425 | * [Binomial Distribution](https://github.com/TheAlgorithms/Python/blob/master/maths/binomial_distribution.py)
|
425 | 426 | * [Bisection](https://github.com/TheAlgorithms/Python/blob/master/maths/bisection.py)
|
426 | 427 | * [Ceil](https://github.com/TheAlgorithms/Python/blob/master/maths/ceil.py)
|
| 428 | + * [Check Polygon](https://github.com/TheAlgorithms/Python/blob/master/maths/check_polygon.py) |
427 | 429 | * [Chudnovsky Algorithm](https://github.com/TheAlgorithms/Python/blob/master/maths/chudnovsky_algorithm.py)
|
428 | 430 | * [Collatz Sequence](https://github.com/TheAlgorithms/Python/blob/master/maths/collatz_sequence.py)
|
429 | 431 | * [Combinations](https://github.com/TheAlgorithms/Python/blob/master/maths/combinations.py)
|
430 | 432 | * [Decimal Isolate](https://github.com/TheAlgorithms/Python/blob/master/maths/decimal_isolate.py)
|
| 433 | + * [Double Factorial Iterative](https://github.com/TheAlgorithms/Python/blob/master/maths/double_factorial_iterative.py) |
431 | 434 | * [Double Factorial Recursive](https://github.com/TheAlgorithms/Python/blob/master/maths/double_factorial_recursive.py)
|
432 | 435 | * [Entropy](https://github.com/TheAlgorithms/Python/blob/master/maths/entropy.py)
|
433 | 436 | * [Euclidean Distance](https://github.com/TheAlgorithms/Python/blob/master/maths/euclidean_distance.py)
|
|
511 | 514 | * [Sum Of Arithmetic Series](https://github.com/TheAlgorithms/Python/blob/master/maths/sum_of_arithmetic_series.py)
|
512 | 515 | * [Sum Of Digits](https://github.com/TheAlgorithms/Python/blob/master/maths/sum_of_digits.py)
|
513 | 516 | * [Sum Of Geometric Progression](https://github.com/TheAlgorithms/Python/blob/master/maths/sum_of_geometric_progression.py)
|
| 517 | + * [Sylvester Sequence](https://github.com/TheAlgorithms/Python/blob/master/maths/sylvester_sequence.py) |
514 | 518 | * [Test Prime Check](https://github.com/TheAlgorithms/Python/blob/master/maths/test_prime_check.py)
|
515 | 519 | * [Trapezoidal Rule](https://github.com/TheAlgorithms/Python/blob/master/maths/trapezoidal_rule.py)
|
516 | 520 | * [Triplet Sum](https://github.com/TheAlgorithms/Python/blob/master/maths/triplet_sum.py)
|
|
928 | 932 | * [Reverse Letters](https://github.com/TheAlgorithms/Python/blob/master/strings/reverse_letters.py)
|
929 | 933 | * [Reverse Words](https://github.com/TheAlgorithms/Python/blob/master/strings/reverse_words.py)
|
930 | 934 | * [Split](https://github.com/TheAlgorithms/Python/blob/master/strings/split.py)
|
931 |
| - * [Swap Case](https://github.com/TheAlgorithms/Python/blob/master/strings/swap_case.py) |
932 | 935 | * [Upper](https://github.com/TheAlgorithms/Python/blob/master/strings/upper.py)
|
933 | 936 | * [Word Occurrence](https://github.com/TheAlgorithms/Python/blob/master/strings/word_occurrence.py)
|
934 | 937 | * [Word Patterns](https://github.com/TheAlgorithms/Python/blob/master/strings/word_patterns.py)
|
|
0 commit comments