100+ curated problems from top tech interviews
11 problems found
Find all unique triplets summing to 0...
Remove nth node from linked list...
Find all unique quadruplets...
Check palindrome with alphanumeric only...
Reverse character array in-place...
Find two numbers in sorted array...
Merge two sorted arrays in-place...
You are given an integer array height of length n. There are n vertical lines drawn such that the two endpoints of the ith line are (i, 0) and (i, hei...
A phrase is a palindrome if, after converting all uppercase letters into lowercase letters and removing all non-alphanumeric characters, it reads the ...
Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k]...
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it can trap after raining....