questions Lcm and addition of array 1 hour time
Engineer Software Interview Questions
511,875 engineer software interview questions shared by candidates
Giving array of words and user can input any letters. Write a function that returns all possible words that start with the input string. They are looking for optimum solution.
Implement a stack that can be "flipped" at any time.
Given an unweighted directed graph, how would you find the shortest path from s to t? Print out all vertices along the shortest path. Assume no two vertices have the same value.
Questions from the resume and tons of questions related to programming.
Q: Why do you want to work in our company?
Same as others mentioned on glassdoor. 3 hour round is pawn only chess. 6 hour on-site has pair programming, leetcode and small one hour projects
a line of code has one logical bug in it, find the bug.
What are your 3 strengths and 3 weaknesses?
Given two words as Strings, determine if they are isomorphic. Two words are called isomorphic if the letters in one word can be remapped to get the second word. Remapping a letter means replacing all occurrences of it with another letter while the ordering of the letters remains unchanged. No two letters may map to the same letter, but a letter may map to itself. * * Example: * given "foo", "app"; returns true * we can map 'f' -> 'a' and 'o' -> 'p' * * given "foo", "boa"; returns false * we can map 'f' -> 'b', 'o' -> 'o', we can't map 'o' -> 'a' * * given "bar", "foo"; returns false * we can't map both 'a' and 'r' to 'o' * * given "turtle", "tletur"; returns true * we can map 't' -> 't', 'u' -> 'l', 'r' -> 'e', 'l' -> 'u', 'e' ->'r' * * given "ab", "ca"; returns true * we can map 'a' -> 'c', 'b' -> 'a' */
Viewing 1041 - 1050 interview questions