|
22 | 22 | * [Rat In Maze](backtracking/rat_in_maze.py)
|
23 | 23 | * [Sudoku](backtracking/sudoku.py)
|
24 | 24 | * [Sum Of Subsets](backtracking/sum_of_subsets.py)
|
| 25 | + * [Word Ladder](backtracking/word_ladder.py) |
25 | 26 | * [Word Search](backtracking/word_search.py)
|
26 | 27 |
|
27 | 28 | ## Bit Manipulation
|
|
134 | 135 | * [Run Length Encoding](compression/run_length_encoding.py)
|
135 | 136 |
|
136 | 137 | ## Computer Vision
|
| 138 | + * [Cnn Classification](computer_vision/cnn_classification.py) |
137 | 139 | * [Flip Augmentation](computer_vision/flip_augmentation.py)
|
138 | 140 | * [Haralick Descriptors](computer_vision/haralick_descriptors.py)
|
139 | 141 | * [Harris Corner](computer_vision/harris_corner.py)
|
|
242 | 244 | * [Min Heap](data_structures/heap/min_heap.py)
|
243 | 245 | * [Randomized Heap](data_structures/heap/randomized_heap.py)
|
244 | 246 | * [Skew Heap](data_structures/heap/skew_heap.py)
|
| 247 | + * Kd Tree |
| 248 | + * [Build Kdtree](data_structures/kd_tree/build_kdtree.py) |
| 249 | + * Example |
| 250 | + * [Example Usage](data_structures/kd_tree/example/example_usage.py) |
| 251 | + * [Hypercube Points](data_structures/kd_tree/example/hypercube_points.py) |
| 252 | + * [Kd Node](data_structures/kd_tree/kd_node.py) |
| 253 | + * [Nearest Neighbour Search](data_structures/kd_tree/nearest_neighbour_search.py) |
| 254 | + * Tests |
| 255 | + * [Test Kdtree](data_structures/kd_tree/tests/test_kdtree.py) |
245 | 256 | * Linked List
|
246 | 257 | * [Circular Linked List](data_structures/linked_list/circular_linked_list.py)
|
247 | 258 | * [Deque Doubly](data_structures/linked_list/deque_doubly.py)
|
|
281 | 292 | * [Stack With Doubly Linked List](data_structures/stacks/stack_with_doubly_linked_list.py)
|
282 | 293 | * [Stack With Singly Linked List](data_structures/stacks/stack_with_singly_linked_list.py)
|
283 | 294 | * [Stock Span Problem](data_structures/stacks/stock_span_problem.py)
|
| 295 | + * Suffix Tree |
| 296 | + * Example |
| 297 | + * [Example Usage](data_structures/suffix_tree/example/example_usage.py) |
| 298 | + * [Suffix Tree](data_structures/suffix_tree/suffix_tree.py) |
| 299 | + * [Suffix Tree Node](data_structures/suffix_tree/suffix_tree_node.py) |
| 300 | + * Tests |
| 301 | + * [Test Suffix Tree](data_structures/suffix_tree/tests/test_suffix_tree.py) |
284 | 302 | * Trie
|
285 | 303 | * [Radix Tree](data_structures/trie/radix_tree.py)
|
286 | 304 | * [Trie](data_structures/trie/trie.py)
|
|
344 | 362 | * [Floyd Warshall](dynamic_programming/floyd_warshall.py)
|
345 | 363 | * [Integer Partition](dynamic_programming/integer_partition.py)
|
346 | 364 | * [Iterating Through Submasks](dynamic_programming/iterating_through_submasks.py)
|
| 365 | + * [K Means Clustering Tensorflow](dynamic_programming/k_means_clustering_tensorflow.py) |
347 | 366 | * [Knapsack](dynamic_programming/knapsack.py)
|
348 | 367 | * [Largest Divisible Subset](dynamic_programming/largest_divisible_subset.py)
|
349 | 368 | * [Longest Common Subsequence](dynamic_programming/longest_common_subsequence.py)
|
350 | 369 | * [Longest Common Substring](dynamic_programming/longest_common_substring.py)
|
351 | 370 | * [Longest Increasing Subsequence](dynamic_programming/longest_increasing_subsequence.py)
|
352 |
| - * [Longest Increasing Subsequence O(Nlogn)](dynamic_programming/longest_increasing_subsequence_o(nlogn).py) |
| 371 | + * [Longest Increasing Subsequence O Nlogn](dynamic_programming/longest_increasing_subsequence_o_nlogn.py) |
353 | 372 | * [Longest Palindromic Subsequence](dynamic_programming/longest_palindromic_subsequence.py)
|
354 | 373 | * [Matrix Chain Multiplication](dynamic_programming/matrix_chain_multiplication.py)
|
355 | 374 | * [Matrix Chain Order](dynamic_programming/matrix_chain_order.py)
|
|
417 | 436 | * [Koch Snowflake](fractals/koch_snowflake.py)
|
418 | 437 | * [Mandelbrot](fractals/mandelbrot.py)
|
419 | 438 | * [Sierpinski Triangle](fractals/sierpinski_triangle.py)
|
| 439 | + * [Vicsek](fractals/vicsek.py) |
420 | 440 |
|
421 | 441 | ## Fuzzy Logic
|
422 | 442 | * [Fuzzy Operations](fuzzy_logic/fuzzy_operations.py)
|
|
462 | 482 | * [Dijkstra Alternate](graphs/dijkstra_alternate.py)
|
463 | 483 | * [Dijkstra Binary Grid](graphs/dijkstra_binary_grid.py)
|
464 | 484 | * [Dinic](graphs/dinic.py)
|
465 |
| - * [Directed And Undirected (Weighted) Graph](graphs/directed_and_undirected_(weighted)_graph.py) |
| 485 | + * [Directed And Undirected Weighted Graph](graphs/directed_and_undirected_weighted_graph.py) |
466 | 486 | * [Edmonds Karp Multiple Source And Sink](graphs/edmonds_karp_multiple_source_and_sink.py)
|
467 | 487 | * [Eulerian Path And Circuit For Undirected Graph](graphs/eulerian_path_and_circuit_for_undirected_graph.py)
|
468 | 488 | * [Even Tree](graphs/even_tree.py)
|
|
537 | 557 | * [Lu Decomposition](linear_algebra/lu_decomposition.py)
|
538 | 558 | * Src
|
539 | 559 | * [Conjugate Gradient](linear_algebra/src/conjugate_gradient.py)
|
540 |
| - * Gaussian Elimination Pivoting |
541 |
| - * [Gaussian Elimination Pivoting](linear_algebra/src/gaussian_elimination_pivoting/gaussian_elimination_pivoting.py) |
| 560 | + * [Gaussian Elimination Pivoting](linear_algebra/src/gaussian_elimination_pivoting.py) |
542 | 561 | * [Lib](linear_algebra/src/lib.py)
|
543 | 562 | * [Polynom For Points](linear_algebra/src/polynom_for_points.py)
|
544 | 563 | * [Power Iteration](linear_algebra/src/power_iteration.py)
|
|
571 | 590 | * [Local Weighted Learning](machine_learning/local_weighted_learning/local_weighted_learning.py)
|
572 | 591 | * [Logistic Regression](machine_learning/logistic_regression.py)
|
573 | 592 | * [Loss Functions](machine_learning/loss_functions.py)
|
| 593 | + * Lstm |
| 594 | + * [Lstm Prediction](machine_learning/lstm/lstm_prediction.py) |
574 | 595 | * [Mfcc](machine_learning/mfcc.py)
|
575 | 596 | * [Multilayer Perceptron Classifier](machine_learning/multilayer_perceptron_classifier.py)
|
576 | 597 | * [Polynomial Regression](machine_learning/polynomial_regression.py)
|
|
631 | 652 | * [Floor](maths/floor.py)
|
632 | 653 | * [Gamma](maths/gamma.py)
|
633 | 654 | * [Gaussian](maths/gaussian.py)
|
634 |
| - * [Gaussian Error Linear Unit](maths/gaussian_error_linear_unit.py) |
635 | 655 | * [Gcd Of N Numbers](maths/gcd_of_n_numbers.py)
|
636 | 656 | * [Germain Primes](maths/germain_primes.py)
|
637 | 657 | * [Greatest Common Divisor](maths/greatest_common_divisor.py)
|
|
657 | 677 | * [Manhattan Distance](maths/manhattan_distance.py)
|
658 | 678 | * [Matrix Exponentiation](maths/matrix_exponentiation.py)
|
659 | 679 | * [Max Sum Sliding Window](maths/max_sum_sliding_window.py)
|
660 |
| - * [Median Of Two Arrays](maths/median_of_two_arrays.py) |
661 | 680 | * [Minkowski Distance](maths/minkowski_distance.py)
|
662 | 681 | * [Mobius Function](maths/mobius_function.py)
|
663 | 682 | * [Modular Division](maths/modular_division.py)
|
|
675 | 694 | * [Newton Forward Interpolation](maths/numerical_analysis/newton_forward_interpolation.py)
|
676 | 695 | * [Newton Raphson](maths/numerical_analysis/newton_raphson.py)
|
677 | 696 | * [Numerical Integration](maths/numerical_analysis/numerical_integration.py)
|
| 697 | + * [Proper Fractions](maths/numerical_analysis/proper_fractions.py) |
678 | 698 | * [Runge Kutta](maths/numerical_analysis/runge_kutta.py)
|
679 | 699 | * [Runge Kutta Fehlberg 45](maths/numerical_analysis/runge_kutta_fehlberg_45.py)
|
680 | 700 | * [Runge Kutta Gills](maths/numerical_analysis/runge_kutta_gills.py)
|
|
768 | 788 | * [Inverse Of Matrix](matrix/inverse_of_matrix.py)
|
769 | 789 | * [Largest Square Area In Matrix](matrix/largest_square_area_in_matrix.py)
|
770 | 790 | * [Matrix Class](matrix/matrix_class.py)
|
| 791 | + * [Matrix Equalization](matrix/matrix_equalization.py) |
771 | 792 | * [Matrix Multiplication Recursion](matrix/matrix_multiplication_recursion.py)
|
772 | 793 | * [Matrix Operation](matrix/matrix_operation.py)
|
773 | 794 | * [Max Area Of Island](matrix/max_area_of_island.py)
|
|
787 | 808 | * [Minimum Cut](networking_flow/minimum_cut.py)
|
788 | 809 |
|
789 | 810 | ## Neural Network
|
790 |
| - * [2 Hidden Layers Neural Network](neural_network/2_hidden_layers_neural_network.py) |
791 | 811 | * Activation Functions
|
792 | 812 | * [Binary Step](neural_network/activation_functions/binary_step.py)
|
793 | 813 | * [Exponential Linear Unit](neural_network/activation_functions/exponential_linear_unit.py)
|
| 814 | + * [Gaussian Error Linear Unit](neural_network/activation_functions/gaussian_error_linear_unit.py) |
794 | 815 | * [Leaky Rectified Linear Unit](neural_network/activation_functions/leaky_rectified_linear_unit.py)
|
795 | 816 | * [Mish](neural_network/activation_functions/mish.py)
|
796 | 817 | * [Rectified Linear Unit](neural_network/activation_functions/rectified_linear_unit.py)
|
|
801 | 822 | * [Swish](neural_network/activation_functions/swish.py)
|
802 | 823 | * [Back Propagation Neural Network](neural_network/back_propagation_neural_network.py)
|
803 | 824 | * [Convolution Neural Network](neural_network/convolution_neural_network.py)
|
| 825 | + * [Input Data](neural_network/input_data.py) |
804 | 826 | * [Simple Neural Network](neural_network/simple_neural_network.py)
|
| 827 | + * [Two Hidden Layers Neural Network](neural_network/two_hidden_layers_neural_network.py) |
805 | 828 |
|
806 | 829 | ## Other
|
807 | 830 | * [Activity Selection](other/activity_selection.py)
|
|
856 | 879 | * [Newtons Second Law Of Motion](physics/newtons_second_law_of_motion.py)
|
857 | 880 | * [Photoelectric Effect](physics/photoelectric_effect.py)
|
858 | 881 | * [Potential Energy](physics/potential_energy.py)
|
| 882 | + * [Rainfall Intensity](physics/rainfall_intensity.py) |
859 | 883 | * [Reynolds Number](physics/reynolds_number.py)
|
860 | 884 | * [Rms Speed Of Molecule](physics/rms_speed_of_molecule.py)
|
861 | 885 | * [Shear Stress](physics/shear_stress.py)
|
|
1252 | 1276 | * [Can String Be Rearranged As Palindrome](strings/can_string_be_rearranged_as_palindrome.py)
|
1253 | 1277 | * [Capitalize](strings/capitalize.py)
|
1254 | 1278 | * [Check Anagrams](strings/check_anagrams.py)
|
| 1279 | + * [Count Vowels](strings/count_vowels.py) |
1255 | 1280 | * [Credit Card Validator](strings/credit_card_validator.py)
|
1256 | 1281 | * [Damerau Levenshtein Distance](strings/damerau_levenshtein_distance.py)
|
1257 | 1282 | * [Detecting English Programmatically](strings/detecting_english_programmatically.py)
|
|
1319 | 1344 | * [Get Ip Geolocation](web_programming/get_ip_geolocation.py)
|
1320 | 1345 | * [Get Top Billionaires](web_programming/get_top_billionaires.py)
|
1321 | 1346 | * [Get Top Hn Posts](web_programming/get_top_hn_posts.py)
|
1322 |
| - * [Get User Tweets](web_programming/get_user_tweets.py) |
1323 | 1347 | * [Giphy](web_programming/giphy.py)
|
1324 | 1348 | * [Instagram Crawler](web_programming/instagram_crawler.py)
|
1325 | 1349 | * [Instagram Pic](web_programming/instagram_pic.py)
|
|
0 commit comments