Skip to content

Commit 92caa7f

Browse files
committed
Updated README
1 parent 72e9b48 commit 92caa7f

File tree

1 file changed

+73
-0
lines changed

1 file changed

+73
-0
lines changed

README.md

+73
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,79 @@ The questions are not ordered so you might need to search for a bit.
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) |
105+
| :star: | Four Number Sum | :red_sqaure: | [four-number-sum.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/four-number-sum.py) |
106+
| :star: | Subarray Sort | :red_sqaure: | [subarray-sort.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/subarray-sort.py) |
107+
| :star: | Largest Range | :red_sqaure: | [largest-range.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/largest-range.py) |
108+
| :star: | Min Rewards | :red_sqaure: | [min-rewards.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/min-rewards.py) |
109+
| :star: | Zigzag Traverse | :red_sqaure: | [zigzag-traverse.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/zigzag-traverse.py) |
110+
| :star: | Same bsts | :red_sqaure: | [same-bsts.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/same-bsts.py) |
111+
| :star: | Validate Three Nodes | :red_sqaure: | [validate-three-nodes.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/validate-three-nodes.py) |
112+
| :star: | Max Path Sum In Binary Tree | :red_sqaure: | [max-path-sum-in-binary-tree.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/max-path-sum-in-binary-tree.py) |
113+
| :star: | Find Nodes Distance K | :red_sqaure: | [find-nodes-distance-k.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/find-nodes-distance-k.py) || :star: | Max Sum Increasing Subsequence | :red_sqaure: | [max-sum-increasing-subsequence.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/max-sum-increasing-subsequence.py) |
114+
| :star: | Longest Common Subsequence | :red_sqaure: | [longest-common-subsequence.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/longest-common-subsequence.py) |
115+
| :star: | Min Number of Jumps | :red_sqaure: | [min-number-of-jumps.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/min-number-of-jumps.py) |
116+
| :star: | Water Area | :red_sqaure: | [water-area.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/water-area.py) |
117+
| :star: | Knapsack Problem | :red_sqaure: | [knapsack-problem.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/knapsack-problem.py) |
118+
| :star: | Disk Stacking | :red_sqaure: | [disk-stacking.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/disk-stacking.py) |
119+
| :star: | Numbers in Pi | :red_sqaure: | [numbers-in-pi.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/numbers-in-pi.py) |
120+
| :star: | Maximum Sum Submatrix | :red_sqaure: | [maximum-sum-submatrix.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/maximum-sum-submatrix.py) || :star: | Maximize Expression | :red_sqaure: | [maximize-expression.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/maximize-expression.py) |
121+
| :star: | Dijkstra Algorithm | :red_sqaure: | [dijkstra-algorithm.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/dijkstra-algorithm.py) |
122+
| :star: | Topological Sort | :red_sqaure: | [topological-sort.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/topological-sort.py) |
123+
| :star: | Boggle Board | :red_sqaure: | [boggle-board.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/boggle-board.py) |
124+
| :star: | Continuous Median | :red_sqaure: | [continuous-median.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/continuous-median.py) |
125+
| :star: | Sort K Sorted Array | :red_sqaure: | [sort-k-sorted-array.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/sort-k-sorted-array.py) |
126+
| :star: | Laptop Rentals | :red_sqaure: | [laptop-rentals.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/laptop-rentals.py) |
127+
| :star: | Find Loop | :red_sqaure: | [find-loop.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/find-loop.py) |
128+
| :star: | Reverse Linked List | :red_sqaure: | [reverse-linked-list.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/reverse-linked-list.py) |
129+
| :star: | Merge Linked Lists | :red_sqaure: | [merge-linked-lists.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/merge-linked-lists.py) |
130+
| :star: | Shift Linked Lists | :red_sqaure: | [shift-linked-lists.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/shift-linked-lists.py) |
131+
| :star: | Lowest Common Manager | :red_sqaure: | [lowest-common-manager.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/lowest-common-manager.py) || :star: | Interweaving Strings | :red_sqaure: | [interweaving-strings.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/interweaving-strings.py) |
132+
| :star: | Solve Sudoku | :red_sqaure: | [solve-sudoku.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/solve-sudoku.py) |
133+
| :star: | Generate Div Tags | :red_sqaure: | [generate-div-tags.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/generate-div-tags.py) |
134+
| :star: | Ambiguous Measurements | :red_sqaure: | [ambiguous-measurements.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/ambiguous-measurements.py) |
135+
| :star: | Shifted Binry Search | :red_sqaure: | [shifted-binry-search.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/shifted-binry-search.py) |
136+
| :star: | Search For Range | :red_sqaure: | [search-for-range.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/search-for-range.py) |
137+
| :star: | Quickselect | :red_sqaure: | [quickselect.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/quickselect.py) |
138+
| :star: | Index Equals Value | :red_sqaure: | [index-equals-value.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/index-equals-value.py) |
139+
| :star: | Quick Sort | :red_sqaure: | [quick-sort.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/quick-sort.py) |
140+
| :star: | Heap Sort | :red_sqaure: | [heap-sort.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/heap-sort.py) |
141+
| :star: | Radix Sort | :red_sqaure: | [radix-sort.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/radix-sort.py) |
142+
| :star: | Shorten Path | :red_sqaure: | [shorten-path.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/shorten-path.py) |
143+
| :star: | Largest Rectangle Under Skyline | :red_sqaure: | [largest-rectangle-under-skyline.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/largest-rectangle-under-skyline.py) |
144+
| :star: | Longest Substring Without Duplication | :red_sqaure: | [longest-substring-without-duplication.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/longest-substring-without-duplication.py) |
145+
| :star: | Underscorify Substring | :red_sqaure: | [underscorify-substring.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/underscorify-substring.py) |
146+
| :star: | Pattern Matcher | :red_sqaure: | [pattern-matcher.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/pattern-matcher.py) |
147+
| :star: | Multi String Search | :red_sqaure: | [multi-string-search.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Hard/multi-string-search.py) |
148+
| :star: | Apartment Hunting | :black_large_square: | [apartment-hunting.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/apartment-hunting.py) |
149+
| :star: | Calendar Matching | :black_large_square: | [calendar-matching.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/calendar-matching.py) |
150+
| :star: | Waterfall Streams | :black_large_square: | [waterfall-streams.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/waterfall-streams.py) |
151+
| :star: | Minimum Area Rectangle | :black_large_square: | [minimum-area-rectangle.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/minimum-area-rectangle.py) |
152+
| :star: | Line Through Points | :black_large_square: | [line-through-points.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/line-through-points.py) |
153+
| :star: | Right Smaller Than | :black_large_square: | [right-smaller-than.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/right-smaller-than.py) |
154+
| :star: | Iterative Inorder Traversal | :black_large_square: | [iterative-inorder-traversal.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/iterative-inorder-traversal.py) |
155+
| :star: | Flatten Binary Tree | :black_large_square: | [flatten-binary-tree.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/flatten-binary-tree.py) |
156+
| :star: | Right Sibling Tree | :black_large_square: | [right-sibling-tree.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/right-sibling-tree.py) |
157+
| :star: | All Kinds of Node Depths | :black_large_square: | [all-kinds-of-node-depths.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/all-kinds-of-node-depths.py) |
158+
| :star: | Compare Leaf Traversal | :black_large_square: | [compare-leaf-traversal.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/compare-leaf-traversal.py) |
159+
| :star: | Max Profit With K Transactions | :black_large_square: | [max-profit-with-k-transactions.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/max-profit-with-k-transactions.py) |
160+
| :star: | Palindrome Partitioning Min Cuts | :black_large_square: | [palindrome-partitioning-min-cuts.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/palindrome-partitioning-min-cuts.py) |
161+
| :star: | Longest Increasing Subsequence | :black_large_square: | [longest-increasing-subsequence.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/longest-increasing-subsequence.py) |
162+
| :star: | Longest String Chain | :black_large_square: | [longest-string-chain.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/longest-string-chain.py) |
163+
| :star: | Square Of Zeroes | :black_large_square: | [square-of-zeroes.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/square-of-zeroes.py) || :star: | Knuth Morris Pratt Algorithm | :black_large_square: | [knuth-morris-pratt-algorithm.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/knuth-morris-pratt-algorithm.py) |
164+
| :star: | A Star Algorithm | :black_large_square: | [a-star-algorithm.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/a-star-algorithm.py) || :star: | Rectangle Mania | :black_large_square: | [rectangle-mania.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/rectangle-mania.py) |
165+
| :star: | Detect Arbitrage | :black_large_square: | [detect-arbitrage.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/detect-arbitrage.py) || :star: | Two Edge Connected Graph | :black_large_square: | [two-edge-connected-graph.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/two-edge-connected-graph.py) |
166+
| :star: | Airport Connections | :black_large_square: | [airport-connections.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/airport-connections.py) |
167+
| :star: | Merge Sorted Arrays | :black_large_square: | [merge-sorted-arrays.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/merge-sorted-arrays.py) |
168+
| :star: | LRU Cache | :black_large_square: | [lRU-cache.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/lRU-cache.py) |
169+
| :star: | Rearrange Linked List | :black_large_square: | [rearrange-linked-list.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/rearrange-linked-list.py) |
170+
| :star: | Linked List Palindrome | :black_large_square: | [linked-list-palindrome.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/linked-list-palindrome.py) |
171+
| :star: | Zip Linked List | :black_large_square: | [zip-linked-list.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/zip-linked-list.py) |
172+
| :star: | Node Swap | :black_large_square: | [node-swap.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/node-swap.py) |
173+
| :star: | Number of Binary Tree Topologies | :black_large_square: | [number-of-binary-tree-topologies.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/number-of-binary-tree-topologies.py) |
174+
| :star: | Non Attacking Queens | :black_large_square: | [non-attacking-queens.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/non-attacking-queens.py) |
175+
| :star: | Merge Sort | :black_large_square: | [merge-sort.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/merge-sort.py) |
176+
| :star: | Count Inversions | :black_large_square: | [count-inversions.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/count-inversions.py) || :star: | Smallest Substring Containing | :black_large_square: | [smallest-substring-containing.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/smallest-substring-containing.py) |
177+
| :star: | Longest Balanced Substring | :black_large_square: | [longest-balanced-substring.py](https://github.com/das-jishu/algoexpert-data-structures-algorithms/blob/master/Very%20Hard/longest-balanced-substring.py) |
105178

106179
#
107180

0 commit comments

Comments
 (0)