Longest palindromes in a string SQL quesiton
Software Engineer Data Interview Questions
415 software engineer data interview questions shared by candidates
General high level system designs for use cases
Logic based questions. Scenarios. Code reviews
# Q1: Write a function to intersect two *sorted* lists (find common elements) # Write a method taking two lists as input, and returning a new list # You can assume you have a reasonable array/list class available (ArrayList, vector, python list, etc) # Ex: # l1 = [1,2,3,4,5] # l2 = [1,5,7,11,100] # result = [1,5]
Come up a most efficient way to determine if a integer is odd or even.
Technical question on extracting data from unstructred question and 2nd question on analysis of transaction data
Given a string of 1,0, or ? print out the combinations. Treat ? as wildcard which could be
Implement a sampling function with nominal distribution.
# Q2: Same as Q1, but now assume there can be duplicates. The output should not have duplicates # Ex: # l1 = [1,2,3,4,5,5,5] # l2 = [1,5,7,11,100] # result = [1,5]
Print every number divisible by both 3 and 5 up to 100 Sample output: 0 15 30 45 60 75 90
Viewing 1 - 10 interview questions