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
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -169,7 +169,8 @@ I have solved quite a number of problems from several topics. See the below tabl
169
169
|01|[253_Meeting_Rooms_II](https://leetcode.com/problems/meeting-rooms-ii/)|[Python](leetcode.com/python/253_Meeting_Rooms_II.py)|[Official](https://leetcode.com/problems/meeting-rooms-ii/solution/)| Medium | --- |
170
170
|02|[347. Top K Frequent Elements](https://leetcode.com/problems/top-k-frequent-elements/solution/)|[Python](leetcode.com/python/347_Top_K_Frequent_Elements.py)|[Helper 1](https://stackoverflow.com/questions/19979518/what-is-pythons-heapq-module), [Helper 2](https://stackoverflow.com/a/12373856/2089253), [heapq](https://docs.python.org/3.0/library/heapq.html), [Counter](https://docs.python.org/3/library/collections.html#collections.Counter)| Medium | --- |
171
171
|03|[767. Reorganize String](https://leetcode.com/problems/reorganize-string/)|[Python](leetcode.com/python/767_Reorganize_String.py)| --- | Medium | Also check Greedy approach |
|05|[358. Rearrange String k Distance Apart](https://leetcode.com/problems/rearrange-string-k-distance-apart/)|[Python](leetcode.com/python/358_Rearrange_String_k_Distance_Apart.py)| --- | Hard | 📌 Similar to [621. Task Scheduler](https://leetcode.com/problems/task-scheduler/)|
@@ -276,12 +277,12 @@ I have solved quite a number of problems from several topics. See the below tabl
276
277
|02|[1057. Campus Bikes](https://leetcode.com/problems/campus-bikes/)|[Python](leetcode.com/python/1057_Campus_Bikes.py)|[Video 01](https://www.youtube.com/watch?v=tG7GFge4-fQ), [Article 01](https://leetcode.com/problems/campus-bikes/discuss/371604/Python-Solution-Using-Dictionary-With-Explanation)| Medium | 📌 Solve [1066. Campus Bikes II](https://leetcode.com/problems/campus-bikes-ii/) using [DP](https://leetcode.com/problems/campus-bikes-ii/discuss/303471/Python-DP-vs-Backtracking-with-comments), [DFS](https://leetcode.com/problems/campus-bikes-ii/discuss/303383/Python-DFS-with-memorization) and [Priority Queue](https://leetcode.com/problems/campus-bikes-ii/discuss/303422/Python-Priority-Queue)|
277
278
|03|[1007. Minimum Domino Rotations For Equal Row](https://leetcode.com/problems/minimum-domino-rotations-for-equal-row/)|[Python](leetcode.com/python/Minimum_Domino_Rotations_For_Equal_Row.py)|[Official](https://leetcode.com/problems/minimum-domino-rotations-for-equal-row/solution/), [Article 01](https://leetcode.com/problems/minimum-domino-rotations-for-equal-row/discuss/252242/JavaC%2B%2BPython-Different-Ideas)| Medium | 📌 Hard to spot if it is a Greedy |
278
279
|04|[406. Queue Reconstruction by Height](https://leetcode.com/problems/queue-reconstruction-by-height/)|[Python](leetcode.com/python/406_Queue_Reconstruction_by_Height.py)|[Article 1](https://leetcode.com/problems/queue-reconstruction-by-height/discuss/89345/Easy-concept-with-PythonC%2B%2BJava-Solution), [Article 2](https://leetcode.com/problems/queue-reconstruction-by-height/discuss/89359/Explanation-of-the-neat-Sort%2BInsert-solution)| Medium | 📌 Fundamentals |
0 commit comments