He asked me to write a function to detect whether string1 contains all letters in string2
Software Developer New Grad Interview Questions
3,049 software developer new grad interview questions shared by candidates
Phone interview questions: Given an array of numbers (1,2,3,8,0,2,2,0,10), move all 0s to the right end and all other numbers to the left while keeping relative order of non-zero numbers. Has to be linear in time and in-place.
Given a list of integers that fall within a known short but unknown range of values, how to find the median value?
Given an input array like [1,2,3] and a target like 5, find all combinations of array that sum up to target. [2,3] and [3,2] counts for only 1 combination.
Given a decimal number, find the number of 1s in its binary representation? Follow up: Can u solve this in O(1) run time and O(1) space.
Given a bug report of a common Python library (everyone would know this library), run tests to observe the issue and then fix it.
Write a function that takes in an integer and returns the number of ones set in the binary representation.
Write a function that implements division without dividing or multiplying.
Sort a million 32 bit integers using only 2MB of RAM
Skype interview Anagrams, given an array of Strings and return all groups of strings that are anagrams.
Viewing 11 - 20 interview questions