Skip to content

Commit 5eca086

Browse files
committed
Updated README
1 parent ad844dd commit 5eca086

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed

README.md

+63
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,69 @@ The questions are not ordered so you might need to search for a bit.
3939
| :star: | Nth Fibonacci | 🟩 | [nth-fibonacci.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/nth-fibonacci.py) |
4040
| :star: | Validate Subsequence | 🟩 | [validate-subsequence.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/validate-subsequence.py) |
4141
| :star: | Product Sum | 🟩 | [product-sum.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/product-sum.py) |
42+
| :star: | Binary Search | :green_square: | [binary-search.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/binary-search.py) |
43+
| :star: | Find Three Largest Numbers | :green_square: | [find-three-largest-numbers.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/find-three-largest-numbers.py) |
44+
| :star: | Bubble Sort | :green_square: | [bubble-sort.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/bubble-sort.py) |
45+
| :star: | Insertion Sort | :green_square: | [insertion-sort.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/insertion-sort.py) |
46+
| :star: | Selection Sort | :green_square: | [selection-sort.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/selection-sort.py) |
47+
| :star: | Palindrome Check | :green_square: | [palindrome-check.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/palindrome-check.py) |
48+
| :star: | Caesar Cipher Encryptor | :green_square: | [caesar-cipher-encryptor.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/caesar-cipher-encryptor.py) |
49+
| :star: | Run Length Encoding | :green_square: | [run-length-encoding.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/run-length-encoding.py) |
50+
| :star: | Generate Document | :green_square: | [generate-document.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/generate-document.py) |
51+
| :star: | Sorted Square Array | :green_square: | [sorted-square-array.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/sorted-square-array.py) |
52+
| :star: | First Non Repeating Character | :green_square: | [first-non-repeating-character.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/first-non-repeating-character.py) |
53+
| :star: | Tandem Bicycle | :green_square: | [tandem-bicycle.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Easy/tandem-bicycle.py) |
54+
| :star: | Three Number Sum | :blue_square: | [three-number-sum.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/three-number-sum.py) |
55+
| :star: | Smallest Difference | :blue_square: | [smallest-difference.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/smallest-difference.py) |
56+
| :star: | Move Element to End | :blue_square: | [move-element-to-end.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/move-element-to-end.py) |
57+
| :star: | Monotonic Array | :blue_square: | [monotonic-array.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/monotonic-array.py) |
58+
| :star: | Spiral Traverse | :blue_square: | [spiral-traverse.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/spiral-traverse.py) |
59+
| :star: | Longest Peak | :blue_square: | [longest-peak.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/longest-peak.py) |
60+
| :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) |
61+
| :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) |
62+
| :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) |
69+
| :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) |
70+
| :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) |
71+
| :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) |
72+
| :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) |
74+
| :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) |
75+
| :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) |
77+
| :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) |
78+
| :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) |
79+
| :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) |
80+
| :star: | Remove Islands | :blue_square: | [remove-islands.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/remove-islands.py) |
81+
| :star: | Cycle In Graph | :blue_square: | [cycle-in-graph.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/cycle-in-graph.py) |
82+
| :star: | Minimum Passes of Matrix | :blue_square: | [minimum-passes-of-matrix.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/minimum-passes-of-matrix.py) |
83+
| :star: | Task Assignment | :blue_square: | [task-assignment.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/task-assignment.py) |
84+
| :star: | Valid Starting City | :blue_square: | [valid-starting-city.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/valid-starting-city.py) |
85+
| :star: | Min Heap Construction | :blue_square: | [min-heap-construction.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/min-heap-construction.py) |
86+
| :star: | Linked List Construction | :blue_square: | [linked-list-construction.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/linked-list-construction.py) |
87+
| :star: | Remove Kth Node From End | :blue_square: | [remove-kth-node-from-end.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/remove-kth-node-from-end.py) |
88+
| :star: | Sum of Linked Lists | :blue_square: | [sum-of-linked-lists.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/sum-of-linked-lists.py) |
89+
| :star: | Permutations | :blue_square: | [permutations.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/permutations.py) |
90+
| :star: | Powerset | :blue_square: | [powerset.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/powerset.py) |
91+
| :star: | Phone Number Mnemonics | :blue_square: | [phone-number-mnemonics.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/phone-number-mnemonics.py) |
92+
| :star: | Staircase Traversal | :blue_square: | [staircase-traversal.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/staircase-traversal.py) |
93+
| :star: | Search in Sorted matrix | :blue_square: | [search-in-sorted-matrix.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/search-in-sorted-matrix.py) |
94+
| :star: | Three Number Sort | :blue_square: | [three-number-sort.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/three-number-sort.py) |
95+
| :star: | Min Max Stack construction | :blue_square: | [min-max-stack-construction.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/min-max-stack-construction.py) |
96+
| :star: | Balanced Brackets | :blue_square: | [balanced-brackets.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/balanced-brackets.py) |
97+
| :star: | Sunset Views | :blue_square: | [sunset-views.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/sunset-views.py) |
98+
| :star: | Sort Stack | :blue_square: | [sort-stack.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Medium/sort-stack.py) |
99+
| :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) |
100+
| :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) |
102+
| :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) |
103+
| :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) |
104+
| :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) |
42105

43106
#
44107

0 commit comments

Comments
 (0)