Skip to content

Commit f92d8e2

Browse files
✨ Added. index.md per subfolder and updater script.
1 parent ef55879 commit f92d8e2

13 files changed

Lines changed: 137 additions & 0 deletions

File tree

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Index of dynamic_programming
2+
3+
* longest_common_subsequence.py
4+
* rod_cutting.py

algorithms/math/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Index of math
2+
3+
* greatest_common_divisor.py

algorithms/sorting/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Index of sorting
2+
3+
* insertion_sort.py
4+
* select_sort.py

data_structures/array/index.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Index of array
2+
3+
* permutations_of_word.py
4+
* sorted_array_three_common_elements.py
5+
* dutch_flag_problem.py
6+
* partition_three_parts_equal_sum.py
7+
* binary_search_infinite_array.py
8+
* largest_element.py
9+
* right_place.py
10+
* rotation.py
11+
* find_missing_numbers.py
12+
* three_largest_elements.py
13+
* triplet_sum.py
14+
* max_product.py
15+
* moves_zeros_to_end.py
16+
* pivot_index.py
17+
* intersection_sorted_array.py
18+
* max_triplet_sum.py
19+
* number_of_1_in_sorted_array.py
20+
* square_of_sorted_array.py
21+
* max_consecutive_ones.py
22+
* max_product_three_elements.py
23+
* kadane_algorithm.py
24+
* all_numbers_divisible.py
25+
* duplicates.py
26+
* majority_element.py
27+
* find_sum.py
28+
* quick_sort.py
29+
* peak_element.py
30+
* union_sorted_array.py
31+
* min_product.py
32+
* sort_by_parity.py
33+
* duplicate.py
34+
* product_of_array_except_self.py
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Index of binary_trees
2+
3+
* symmetric_binary_tree.py

data_structures/bst/index.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Index of bst
2+
3+
* deletion.py
4+
* sorted_array_to_bst.py
5+
* print_left_node.py
6+
* diameter.py
7+
* bfs.py
8+
* check_if_bt_if_bst.py
9+
* trim_bst.py
10+
* bt_to_bst.py
11+
* binary_search_tree.py
12+
* convert_bst_to_right_node_tree.py
13+
* kth_largest_in_bst.py
14+
* range_sum.py
15+
* dfs_iterative.py
16+
* print_ancestor.py
17+
* min_max_value_in_bst.py
18+
* check_bt_is_subtree_of_another_bt.py
19+
* ceil.py
20+
* closest_element.py
21+
* kth_smallest_in_bst.py
22+
* insertion_iterative.py
23+
* lowest_common_ancestor.py
24+
* dfs_recursion.py
25+
* search.py
26+
* insertion_recursive.py
27+
* duplicate_keys.py
28+
* merge_sum.py
29+
* linked_list_to_bst.py
30+
* reverse_inorder_traversal.py
31+
* average_of_levels.py
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Index of circular_linked_list
2+
3+
* check_circular_linked_list.py
4+
* delete.py
5+
* traversal.py
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Index of doubly_linked_list
2+
3+
* doubly_linked_list.py

data_structures/graphs/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Index of graphs
2+
3+
* adjeceny_list.py
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Index of linked_list
2+
3+
* remove.py
4+
* pair_swap.py
5+
* reverse.py
6+
* linked_list.py
7+
* cycle_detection.py
8+
* remove_nth_node_from_end.py
9+
* odd_even_arrangement.py
10+
* merge_linked_list.py
11+
* remove_duplicates.py

0 commit comments

Comments
 (0)