Given 4 coins of values 1, 5, 10, and 20, find all the combinations of coins that can add up to K.
Development Engineer Interview Questions
37,151 development engineer interview questions shared by candidates
Reverse a doubly linked list.
A graph question.
Mostly technical question around work done earlier
What is the different between blocking and non-blocking statement?
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.
Convert a number to a roman number
Viewing 2121 - 2130 interview questions