|
420 | 420 | * [Knn Sklearn](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/knn_sklearn.py)
|
421 | 421 | * [Linear Discriminant Analysis](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/linear_discriminant_analysis.py)
|
422 | 422 | * [Linear Regression](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/linear_regression.py)
|
| 423 | + * Local Weighted Learning |
| 424 | + * [Local Weighted Learning](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/local_weighted_learning/local_weighted_learning.py) |
423 | 425 | * [Logistic Regression](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/logistic_regression.py)
|
424 | 426 | * Lstm
|
425 | 427 | * [Lstm Prediction](https://github.com/TheAlgorithms/Python/blob/master/machine_learning/lstm/lstm_prediction.py)
|
|
476 | 478 | * [Factors](https://github.com/TheAlgorithms/Python/blob/master/maths/factors.py)
|
477 | 479 | * [Fermat Little Theorem](https://github.com/TheAlgorithms/Python/blob/master/maths/fermat_little_theorem.py)
|
478 | 480 | * [Fibonacci](https://github.com/TheAlgorithms/Python/blob/master/maths/fibonacci.py)
|
479 |
| - * [Fibonacci Sequence Recursion](https://github.com/TheAlgorithms/Python/blob/master/maths/fibonacci_sequence_recursion.py) |
480 | 481 | * [Find Max](https://github.com/TheAlgorithms/Python/blob/master/maths/find_max.py)
|
481 | 482 | * [Find Max Recursion](https://github.com/TheAlgorithms/Python/blob/master/maths/find_max_recursion.py)
|
482 | 483 | * [Find Min](https://github.com/TheAlgorithms/Python/blob/master/maths/find_min.py)
|
|
517 | 518 | * [Perfect Number](https://github.com/TheAlgorithms/Python/blob/master/maths/perfect_number.py)
|
518 | 519 | * [Perfect Square](https://github.com/TheAlgorithms/Python/blob/master/maths/perfect_square.py)
|
519 | 520 | * [Pi Monte Carlo Estimation](https://github.com/TheAlgorithms/Python/blob/master/maths/pi_monte_carlo_estimation.py)
|
| 521 | + * [Pollard Rho](https://github.com/TheAlgorithms/Python/blob/master/maths/pollard_rho.py) |
520 | 522 | * [Polynomial Evaluation](https://github.com/TheAlgorithms/Python/blob/master/maths/polynomial_evaluation.py)
|
521 | 523 | * [Power Using Recursion](https://github.com/TheAlgorithms/Python/blob/master/maths/power_using_recursion.py)
|
522 | 524 | * [Prime Check](https://github.com/TheAlgorithms/Python/blob/master/maths/prime_check.py)
|
|
539 | 541 | * [Geometric Series](https://github.com/TheAlgorithms/Python/blob/master/maths/series/geometric_series.py)
|
540 | 542 | * [Harmonic](https://github.com/TheAlgorithms/Python/blob/master/maths/series/harmonic.py)
|
541 | 543 | * [Harmonic Series](https://github.com/TheAlgorithms/Python/blob/master/maths/series/harmonic_series.py)
|
| 544 | + * [Hexagonal Numbers](https://github.com/TheAlgorithms/Python/blob/master/maths/series/hexagonal_numbers.py) |
542 | 545 | * [P Series](https://github.com/TheAlgorithms/Python/blob/master/maths/series/p_series.py)
|
543 | 546 | * [Sieve Of Eratosthenes](https://github.com/TheAlgorithms/Python/blob/master/maths/sieve_of_eratosthenes.py)
|
544 | 547 | * [Sigmoid](https://github.com/TheAlgorithms/Python/blob/master/maths/sigmoid.py)
|
|
583 | 586 |
|
584 | 587 | ## Other
|
585 | 588 | * [Activity Selection](https://github.com/TheAlgorithms/Python/blob/master/other/activity_selection.py)
|
| 589 | + * [Alternative List Arrange](https://github.com/TheAlgorithms/Python/blob/master/other/alternative_list_arrange.py) |
586 | 590 | * [Check Strong Password](https://github.com/TheAlgorithms/Python/blob/master/other/check_strong_password.py)
|
587 |
| - * [Date To Weekday](https://github.com/TheAlgorithms/Python/blob/master/other/date_to_weekday.py) |
588 | 591 | * [Davisb Putnamb Logemannb Loveland](https://github.com/TheAlgorithms/Python/blob/master/other/davisb_putnamb_logemannb_loveland.py)
|
589 | 592 | * [Dijkstra Bankers Algorithm](https://github.com/TheAlgorithms/Python/blob/master/other/dijkstra_bankers_algorithm.py)
|
590 | 593 | * [Doomsday](https://github.com/TheAlgorithms/Python/blob/master/other/doomsday.py)
|
|
861 | 864 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_234/sol1.py)
|
862 | 865 | * Problem 301
|
863 | 866 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_301/sol1.py)
|
| 867 | + * Problem 493 |
| 868 | + * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_493/sol1.py) |
864 | 869 | * Problem 551
|
865 | 870 | * [Sol1](https://github.com/TheAlgorithms/Python/blob/master/project_euler/problem_551/sol1.py)
|
866 | 871 | * Problem 686
|
|
960 | 965 | * [Detecting English Programmatically](https://github.com/TheAlgorithms/Python/blob/master/strings/detecting_english_programmatically.py)
|
961 | 966 | * [Frequency Finder](https://github.com/TheAlgorithms/Python/blob/master/strings/frequency_finder.py)
|
962 | 967 | * [Indian Phone Validator](https://github.com/TheAlgorithms/Python/blob/master/strings/indian_phone_validator.py)
|
| 968 | + * [Is Contains Unique Chars](https://github.com/TheAlgorithms/Python/blob/master/strings/is_contains_unique_chars.py) |
963 | 969 | * [Is Palindrome](https://github.com/TheAlgorithms/Python/blob/master/strings/is_palindrome.py)
|
964 | 970 | * [Jaro Winkler](https://github.com/TheAlgorithms/Python/blob/master/strings/jaro_winkler.py)
|
965 | 971 | * [Join](https://github.com/TheAlgorithms/Python/blob/master/strings/join.py)
|
|
1008 | 1014 | * [Nasa Data](https://github.com/TheAlgorithms/Python/blob/master/web_programming/nasa_data.py)
|
1009 | 1015 | * [Random Anime Character](https://github.com/TheAlgorithms/Python/blob/master/web_programming/random_anime_character.py)
|
1010 | 1016 | * [Recaptcha Verification](https://github.com/TheAlgorithms/Python/blob/master/web_programming/recaptcha_verification.py)
|
| 1017 | + * [Search Books By Isbn](https://github.com/TheAlgorithms/Python/blob/master/web_programming/search_books_by_isbn.py) |
1011 | 1018 | * [Slack Message](https://github.com/TheAlgorithms/Python/blob/master/web_programming/slack_message.py)
|
1012 | 1019 | * [Test Fetch Github Info](https://github.com/TheAlgorithms/Python/blob/master/web_programming/test_fetch_github_info.py)
|
1013 | 1020 | * [World Covid19 Stats](https://github.com/TheAlgorithms/Python/blob/master/web_programming/world_covid19_stats.py)
|
0 commit comments