Implement a reverse hash table
Development Interview Questions
137,246 development interview questions shared by candidates
Given the upper left and lower right coordinates of two rectangles, determine if they overlap
Print the number of occurrences of a number in a sorted array of numbers. Input: 1 2 3 4 4 4 4 4 5 6 7 | 4 Ouput: 5
Give a 2D rectangular array represented as a 1D arrary in row-major form, rotate the array by 90 degrees
Write the code for the preorder traversal of a tree.
You have a list of sentences/words. How to find out the sub list that consists of a specific prefix? Ex: input: prefix="he", list = ["hello", "world", "hello world", "hey dude", "galaxy"....] output: ["hello", "hello world", "hey dude"]
Determine the first non-repeated character in a word. For example, in abbcaf it should return c. Do this in O(n) time with O(1) space.
Given an array, put all repeated characters together.
generating prime number
Viewing 221 - 230 interview questions