You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+73
Original file line number
Diff line number
Diff line change
@@ -102,6 +102,79 @@ The questions are not ordered so you might need to search for a bit.
102
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
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
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)|
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)|
|: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)|
|: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)|
|: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)|
|: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)|
|: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)|
|: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)|
|: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)|
|: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)|
|: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)|
|: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)|
|: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)|
0 commit comments