how google implments auto suggest in google search
Software Development Engineer Interview Questions
33,205 software development engineer interview questions shared by candidates
Merged K sorted Linked List
Given 4 coins of values 1, 5, 10, and 20, find all the combinations of coins that can add up to K.
Reverse a doubly linked list.
A graph question.
Mostly technical question around work done earlier
Delete duplicate characters
Count # of A's in a sentence
Write the strstr function.
You're converting a string (s1) into another (s2) by changing the characters in s1. You can do add/delete/replace the characters of s1 to get s2. The cost of any of those operation for a character is 1. Find the minimum cost to convert s1 into s2. Write program and test cases for the same. For example: Convert "Hi" into "Hey". This would require minimum two cost. 1. Replace 'i' with 'e' in s1 2. Add 'y' to s1. Now we've s2.
Viewing 1931 - 1940 interview questions