awesome-leetcode-resources
awesome-leetcode-resources copied to clipboard
Awesome LeetCode resources to learn Data Structures and Algorithms and prepare for Coding Interviews.
aditya verma dp => https://www.youtube.com/playlist?list=PL_z_8CaSLPWekqhdCPmFohncHwz8TY2Go backtracking => https://www.youtube.com/playlist?list=PL_z_8CaSLPWdbOTog8Jxk9XOjzUs3egMP recursion => https://www.youtube.com/playlist?list=PL_z_8CaSLPWeT1ffjiImo0sYTcnLzo-wY strivers graph playlist is also good one. =>https://www.youtube.com/playlist?list=PLgUwDviBIf0oE3gA41TKO2H5bHpPd7fzn
I noticed that the prefix sum pattern contains very few problems, so i wanted to share a better resource that contains more vital problems to practice. although they're not sorted...
I loved your idea but first, 14 pattern links are not working 2nd most of the content has leet code discussion answers which contain just an overview 3rd I suggest...
The original comparator: `PriorityQueue maxHeap = new PriorityQueue((a, b) -> getDistance(b) - getDistance(a));` Here, getDistance(b) - getDistance(a) could result in overflow if the distances are large, causing incorrect behavior or...