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.
Intern Software Engineer Interview Questions
9,436 intern software engineer interview questions shared by candidates
Implement a fast exponentiation function
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.
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"] ]
Using only two pointers how can you tell if a linked-list cycles?
Fibonacci Numbers - Iteratively and Recursively
Find the center of graph(vertex, that is connected with every other vertex, but edges are directed to the center of graph).
Deep copy of a linked list, with an extra pointer to a random node.
Questions asked included (only) printing the nodes of a linked list in reverse, finding the longest palindrome in a given string, finding maximum subarray sum (similar to Kadane's Algorithm) with the constraint that two numbers in the array that form the max sum cannot be next to each other.
Viewing 151 - 160 interview questions