Delete node in BST
Engenheiro De Software I Interview Questions
2,786 engenheiro de software i interview questions shared by candidates
Given an array of integers [1,2,3,4]. and target t = 5. Come up with a solution that will print out all the unique pairs in the array that are equal t.
write an algorithm to determine is "happy" ... a number is happy if the sum of the square of the digits ever equals one. An example of a happy number is 19: 1^2 + 9^2 = 82 8^2 + 2^2 = 68 6^2 + 8^2 = 100 1^2 + 0^2 + 0^2 = 1 If it is not happy then it will eventually hit repeat back to a number that it already saw
Take an input string and output the reverse of that string. May use any programming language.
Did ask some basic programming questions, ex. Have you ever used UML?
Connect nodes at the same level in a binary tree
You've a singly linked list where every node in the list has a field "random" which points to other node in the same list. Write a function to clone this list (create a new copy of the same). Don't use extra space (just the pointer variables are fine).
How would you design a database that allows these two tables to be stored and be infinitely expandable, while maintaining speed of execution?
Not hard at all.
Remove duplicates from a linked list. O(n) time.
Viewing 21 - 30 interview questions