Write a function that takes in an integer N and returns the sum for all numbers between 1 to N excluding multiples of 3 and 5.
Software Engineer Intern Interview Questions
9,334 software engineer intern interview questions shared by candidates
Logic Puzzle : How would you measure exactly 9mins using a 4 minutes and a 7 minutes hourglass
Common interview problems like string processing. Remove repeated chars in a string.
Implement a fast exponentiation function
The technical question was: You're given an array of strings. Sort it so that the result returns an array of an array of strings sorted into its anagrams. (e.g. input: ["aa", "ad", "da"], output: [ ["aa"], ["ad", "da"] ]
Deep copy of a linked list, with an extra pointer to a random node.
Using only two pointers how can you tell if a linked-list cycles?
Find the center of graph(vertex, that is connected with every other vertex, but edges are directed to the center of graph).
A professor wants to see if two students have cheated when writing a paper. Design a function : hasCheated(String s1,String s2, int N) that evaluates to true if two strings have a common substring of length N. Additional question after implementation. Assume you don't have the possibility of using String.contains() and String.substring(). How would you implement this. Questions about complexity of my solution. Overall a very friendly interviewer, was saying "Good" the entire time, but no idea if he wanted to keep me focused or if it was really good.
Fibonacci: recursive and iterative.
Viewing 151 - 160 interview questions