Array Sorting Two Pointers Learner Implement the mergeSortedArrayInPlaceResult method that merges two sorted arrays into a sorted result. Solved
Array Sorting Two Pointers Intermediate Implement the fourSumPairCountSimple method that counts quadruplets that produce the target sum. Solved
Array Sorting Two Pointers Learner Implement the minimumDifferencePairSorted method that returns the smallest difference between any pair after sorting. Solved
Array Sorting Two Pointers Learner Implement the validPalindromeAfterOneRemoval method that checks whether a text can become a palindrome after removing at most one character. Solved
Array Sorting Two Pointers Proficient Implement the trappingRainWaterAmount method that calculates how much rain water can be trapped between bars. Solved
Array Sorting Two Pointers Learner Implement the removeDuplicatesSortedArrayLength method that returns the length after removing duplicates from a sorted array. Solved
Array Sorting Two Pointers Proficient Implement the threeSumTripletCount method that counts unique triplets whose sum is zero. Solved
Array Sorting Two Pointers Intermediate Implement the containerWithMostWaterArea method that returns the maximum water area formed by two vertical lines. Solved
Array Hash Map Counting Intermediate Implement the longestSubarrayZeroSumLength method that returns the length of the longest subarray with sum zero. Solved
Array Hash Map Counting Intermediate Implement the minimumIndexSumCommonString method that returns the common string with the smallest index sum. Solved
Array Hash Map Counting Intermediate Implement the findAllDuplicatesCount method that counts duplicate values found in the array. Solved
Array Hash Map Counting Intermediate Implement the validSudokuRowsSimple method that checks whether each row of a Sudoku board is valid. Solved
Array Hash Map Counting Intermediate Implement the topKFrequentValuesCount method that counts how many values belong to the top k frequent values. Solved
Array Hash Map Counting Intermediate Implement the isomorphicStringsCheck method that checks whether two strings follow the same character mapping pattern. Solved
Array Hash Map Counting Learner Implement the containsDuplicateWithinK method that checks whether duplicate values appear within distance k. Solved
Array Hash Map Counting Intermediate Implement the subarraySumEqualsKCount method that counts subarrays whose sum equals k. Solved
Array Hash Map Counting Intermediate Implement the longestConsecutiveSequenceLength method that returns the length of the longest consecutive number sequence. Solved
Array Hash Map Counting Learner Implement the twoSumUsingMap method that returns two indices that form the target sum using a hash map. Solved
Array String Dynamic Programming Memoization Tabulation Guru Implement the regularExpressionMatchSimple method that checks whether text matches a simplified regular expression pattern. Solved