|
243 | 243 | * [Min Heap](data_structures/heap/min_heap.py) |
244 | 244 | * [Randomized Heap](data_structures/heap/randomized_heap.py) |
245 | 245 | * [Skew Heap](data_structures/heap/skew_heap.py) |
| 246 | + * Kd Tree |
| 247 | + * [Build Kdtree](data_structures/kd_tree/build_kdtree.py) |
| 248 | + * Example |
| 249 | + * [Example Usage](data_structures/kd_tree/example/example_usage.py) |
| 250 | + * [Hypercube Points](data_structures/kd_tree/example/hypercube_points.py) |
| 251 | + * [Kd Node](data_structures/kd_tree/kd_node.py) |
| 252 | + * [Nearest Neighbour Search](data_structures/kd_tree/nearest_neighbour_search.py) |
| 253 | + * Tests |
| 254 | + * [Test Kdtree](data_structures/kd_tree/tests/test_kdtree.py) |
246 | 255 | * Linked List |
247 | 256 | * [Circular Linked List](data_structures/linked_list/circular_linked_list.py) |
248 | 257 | * [Deque Doubly](data_structures/linked_list/deque_doubly.py) |
|
540 | 549 | * [Lu Decomposition](linear_algebra/lu_decomposition.py) |
541 | 550 | * Src |
542 | 551 | * [Conjugate Gradient](linear_algebra/src/conjugate_gradient.py) |
543 | | - * Gaussian Elimination Pivoting |
544 | | - * [Gaussian Elimination Pivoting](linear_algebra/src/gaussian_elimination_pivoting/gaussian_elimination_pivoting.py) |
| 552 | + * [Gaussian Elimination Pivoting](linear_algebra/src/gaussian_elimination_pivoting.py) |
545 | 553 | * [Lib](linear_algebra/src/lib.py) |
546 | 554 | * [Polynom For Points](linear_algebra/src/polynom_for_points.py) |
547 | 555 | * [Power Iteration](linear_algebra/src/power_iteration.py) |
|
661 | 669 | * [Manhattan Distance](maths/manhattan_distance.py) |
662 | 670 | * [Matrix Exponentiation](maths/matrix_exponentiation.py) |
663 | 671 | * [Max Sum Sliding Window](maths/max_sum_sliding_window.py) |
664 | | - * [Median Of Two Arrays](maths/median_of_two_arrays.py) |
665 | 672 | * [Minkowski Distance](maths/minkowski_distance.py) |
666 | 673 | * [Mobius Function](maths/mobius_function.py) |
667 | 674 | * [Modular Division](maths/modular_division.py) |
|
773 | 780 | * [Inverse Of Matrix](matrix/inverse_of_matrix.py) |
774 | 781 | * [Largest Square Area In Matrix](matrix/largest_square_area_in_matrix.py) |
775 | 782 | * [Matrix Class](matrix/matrix_class.py) |
| 783 | + * [Matrix Equalization](matrix/matrix_equalization.py) |
776 | 784 | * [Matrix Multiplication Recursion](matrix/matrix_multiplication_recursion.py) |
777 | 785 | * [Matrix Operation](matrix/matrix_operation.py) |
778 | 786 | * [Max Area Of Island](matrix/max_area_of_island.py) |
|
863 | 871 | * [Newtons Second Law Of Motion](physics/newtons_second_law_of_motion.py) |
864 | 872 | * [Photoelectric Effect](physics/photoelectric_effect.py) |
865 | 873 | * [Potential Energy](physics/potential_energy.py) |
| 874 | + * [Rainfall Intensity](physics/rainfall_intensity.py) |
866 | 875 | * [Reynolds Number](physics/reynolds_number.py) |
867 | 876 | * [Rms Speed Of Molecule](physics/rms_speed_of_molecule.py) |
868 | 877 | * [Shear Stress](physics/shear_stress.py) |
|
1259 | 1268 | * [Can String Be Rearranged As Palindrome](strings/can_string_be_rearranged_as_palindrome.py) |
1260 | 1269 | * [Capitalize](strings/capitalize.py) |
1261 | 1270 | * [Check Anagrams](strings/check_anagrams.py) |
| 1271 | + * [Count Vowels](strings/count_vowels.py) |
1262 | 1272 | * [Credit Card Validator](strings/credit_card_validator.py) |
1263 | 1273 | * [Damerau Levenshtein Distance](strings/damerau_levenshtein_distance.py) |
1264 | 1274 | * [Detecting English Programmatically](strings/detecting_english_programmatically.py) |
|
0 commit comments