|
195 | 195 | * [Permutations](data_structures/arrays/permutations.py) |
196 | 196 | * [Prefix Sum](data_structures/arrays/prefix_sum.py) |
197 | 197 | * [Product Sum](data_structures/arrays/product_sum.py) |
| 198 | + * [Rotate Array](data_structures/arrays/rotate_array.py) |
198 | 199 | * [Sparse Table](data_structures/arrays/sparse_table.py) |
199 | 200 | * [Sudoku Solver](data_structures/arrays/sudoku_solver.py) |
200 | 201 | * Binary Tree |
|
397 | 398 | * [Minimum Squares To Represent A Number](dynamic_programming/minimum_squares_to_represent_a_number.py) |
398 | 399 | * [Minimum Steps To One](dynamic_programming/minimum_steps_to_one.py) |
399 | 400 | * [Minimum Tickets Cost](dynamic_programming/minimum_tickets_cost.py) |
| 401 | + * [Narcissistic Number](dynamic_programming/narcissistic_number.py) |
400 | 402 | * [Optimal Binary Search Tree](dynamic_programming/optimal_binary_search_tree.py) |
401 | 403 | * [Palindrome Partitioning](dynamic_programming/palindrome_partitioning.py) |
402 | 404 | * [Range Sum Query](dynamic_programming/range_sum_query.py) |
|
623 | 625 | * [Sequential Minimum Optimization](machine_learning/sequential_minimum_optimization.py) |
624 | 626 | * [Similarity Search](machine_learning/similarity_search.py) |
625 | 627 | * [Support Vector Machines](machine_learning/support_vector_machines.py) |
| 628 | + * [T Stochastic Neighbour Embedding](machine_learning/t_stochastic_neighbour_embedding.py) |
626 | 629 | * [Word Frequency Functions](machine_learning/word_frequency_functions.py) |
627 | 630 | * [Xgboost Classifier](machine_learning/xgboost_classifier.py) |
628 | 631 | * [Xgboost Regressor](machine_learning/xgboost_regressor.py) |
|
725 | 728 | * [Secant Method](maths/numerical_analysis/secant_method.py) |
726 | 729 | * [Simpson Rule](maths/numerical_analysis/simpson_rule.py) |
727 | 730 | * [Square Root](maths/numerical_analysis/square_root.py) |
| 731 | + * [Weierstrass Method](maths/numerical_analysis/weierstrass_method.py) |
728 | 732 | * [Odd Sieve](maths/odd_sieve.py) |
729 | 733 | * [Perfect Cube](maths/perfect_cube.py) |
730 | 734 | * [Perfect Number](maths/perfect_number.py) |
|
877 | 881 | * [Quine](other/quine.py) |
878 | 882 | * [Scoring Algorithm](other/scoring_algorithm.py) |
879 | 883 | * [Sdes](other/sdes.py) |
| 884 | + * [Sliding Window Maximum](other/sliding_window_maximum.py) |
880 | 885 | * [Tower Of Hanoi](other/tower_of_hanoi.py) |
881 | 886 | * [Word Search](other/word_search.py) |
882 | 887 |
|
|
1300 | 1305 | * [Shell Sort](sorts/shell_sort.py) |
1301 | 1306 | * [Shrink Shell Sort](sorts/shrink_shell_sort.py) |
1302 | 1307 | * [Slowsort](sorts/slowsort.py) |
| 1308 | + * [Stalin Sort](sorts/stalin_sort.py) |
1303 | 1309 | * [Stooge Sort](sorts/stooge_sort.py) |
1304 | 1310 | * [Strand Sort](sorts/strand_sort.py) |
1305 | 1311 | * [Tim Sort](sorts/tim_sort.py) |
|
0 commit comments