Published onMay 13, 2024Three Sumpythonalgorithmtwo-pointersWhen given an array of integers, find three elements that sum up to zero.
Published onMay 12, 2024Trapping Rain Waterpythonalgorithmtwo-pointersstackThis problem involves finding the total volume of water trapped between walls in a given landscape. Solve this!
Published onMay 11, 2024Two SumpythonalgorithmFind two element index where sum of two elements equals to the target
Published onMay 10, 2024Longest Palindromic Substringpythonalgorithmpalindrometwo-pointersIdentify the longest substring that forms a palindrome
Published onMay 7, 2024Group AnagramspythonalgorithmdefaultdictAn anagram is a word or phrase formed by rearranging the letters of another word or phrase, using all the original letters exactly once. Group these!