Skip to content

Commit 6eff501

Browse files
authored
Update README.md
1 parent 5eca086 commit 6eff501

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,20 +60,20 @@ The questions are not ordered so you might need to search for a bit.
6060
| :star: | Array of Products | :blue_square: | [array-of-products.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/array-of-products.py) |
6161
| :star: | First Duplicate Value | :blue_square: | [first-duplicate-value.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/first-duplicate-value.py) |
6262
| :star: | Merge Overlapping Intervals | :blue_square: | [merge-overlapping-intervals.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/merge-overlapping-intervals.py) |
63-
| :star: | BST Construction | :blue_square: | [bST-construction.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/bST-construction.py) |
64-
| :star: | Validate BST | :blue_square: | [validate-bST.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/validate-bST.py) |
65-
| :star: | BST Traversal | :blue_square: | [bST-traversal.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/bST-traversal.py) |
66-
| :star: | Min Height BST | :blue_square: | [min-height-bST.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/min-height-bST.py) |
67-
| :star: | Find Kth Largest Value In BST | :blue_square: | [find-kth-largest-value-in-bST.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/find-kth-largest-value-in-bST.py) |
68-
| :star: | Reconstruct BST | :blue_square: | [reconstruct-bST.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/reconstruct-bST.py) |
63+
| :star: | BST Construction | :blue_square: | [bst-construction.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/bst-construction.py) |
64+
| :star: | Validate BST | :blue_square: | [validate-bst.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/validate-bst.py) |
65+
| :star: | BST Traversal | :blue_square: | [bst-traversal.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/bst-traversal.py) |
66+
| :star: | Min Height BST | :blue_square: | [min-height-bst.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/min-height-BST.py) |
67+
| :star: | Find Kth Largest Value In BST | :blue_square: | [find-kth-largest-value-in-bst.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/find-kth-largest-value-in-bst.py) |
68+
| :star: | Reconstruct BST | :blue_square: | [reconstruct-bst.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/reconstruct-bst.py) |
6969
| :star: | Invert Binary Tree | :blue_square: | [invert-binary-tree.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/invert-binary-tree.py) |
7070
| :star: | Binary Tree Diameter | :blue_square: | [binary-tree-diameter.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/binary-tree-diameter.py) || :star: | Find Successor | :blue_square: | [find-successor.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/find-successor.py) |
7171
| :star: | Height Balanced Binary Tree | :blue_square: | [height-balanced-binary-tree.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/height-balanced-binary-tree.py) |
7272
| :star: | Max Subset Sum No Adjacent | :blue_square: | [max-subset-sum-no-adjacent.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/max-subset-sum-no-adjacent.py) |
73-
| :star: | Number of Ways to Make Change | :blue_square: | [number-of-ways-to-make-change.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/number-of-ways-to-make-change.py) |
73+
| :star: | Number of Ways to Make Change | :blue_square: | [ways-to-make-change.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/ways-to-make-change.py) |
7474
| :star: | Min Number of Coins for Change | :blue_square: | [min-number-of-coins-for-change.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/min-number-of-coins-for-change.py) |
7575
| :star: | Levenshtein Distance | :blue_square: | [levenshtein-distance.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/levenshtein-distance.py) || :star: | Number of Ways to Traverse Graph | :blue_square: | [number-of-ways-to-traverse-graph.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/number-of-ways-to-traverse-graph.py) |
76-
| :star: | Kadane's Algorithm | :blue_square: | [kadane's-algorithm.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/kadane's-algorithm.py) |
76+
| :star: | Kadane's Algorithm | :blue_square: | [kadane's-algorithm.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/kadane-algorithm.py) |
7777
| :star: | Single Cycle Check | :blue_square: | [single-cycle-check.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/single-cycle-check.py) |
7878
| :star: | Breadth First Search | :blue_square: | [breadth-first-search.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/breadth-first-search.py) || :star: | River Sizes | :blue_square: | [river-sizes.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/river-sizes.py) |
7979
| :star: | Youngest Common Ancestor | :blue_square: | [youngest-common-ancestor.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/youngest-common-ancestor.py) |
@@ -98,7 +98,7 @@ The questions are not ordered so you might need to search for a bit.
9898
| :star: | Sort Stack | :blue_square: | [sort-stack.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/sort-stack.py) |
9999
| :star: | Next Greater Element | :blue_square: | [next-greater-element.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/next-greater-element.py) || :star: | Longest Palindromic Substring | :blue_square: | [longest-palindromic-substring.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/longest-palindromic-substring.py) |
100100
| :star: | Group Anagrams | :blue_square: | [group-anagrams.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/group-anagrams.py) |
101-
| :star: | Valid IP Addresses | :blue_square: | [valid-iP-addresses.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/valid-iP-addresses.py) |
101+
| :star: | Valid IP Addresses | :blue_square: | [valid-ip-addresses.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/valid-ip-addresses.py) |
102102
| :star: | Reverse Words In String | :blue_square: | [reverse-words-in-string.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/reverse-words-in-string.py) |
103103
| :star: | Minimum Characters For Words | :blue_square: | [minimum-characters-for-words.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/minimum-characters-for-words.py) |
104104
| :star: | Suffix Trie Construction | :blue_square: | [suffix-trie-construction.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/suffix-trie-construction.py) |

0 commit comments

Comments
 (0)