Add two binary numbers (Input as a string)
MISSING VALUE Interview Questions
6,571,202 interview questions shared by candidates
Given the following tables how would you know who has the most friends REQUESTS date | sender_id | accepter_id ACCEPTED accepted_at | accepter_id | sender_id
1.Given a string, write a function that return if it is Palindrome. This wasn't asked directly but from interviewer example i was need to understand that this function must ignore all spaces and special symbols. 2. Given an array, write a function that return true if any 3 elements of this array can sum to 0. My first solution was the simplest and far from best which result in O(n^3). Then interviewer asked me to improve to improve it to O(n^2). This give me a hint that i can use Hash to reduce complexity.
Given an array of numbers, nums, return an array of numbers products, where products[i] is the product of all nums[j], j != i. Input : [1, 2, 3, 4, 5] Output: [(2*3*4*5), (1*3*4*5), (1*2*4*5), (1*2*3*5), (1*2*3*4)] = [120, 60, 40, 30, 24] You must do this in O(N) without using division.
To find and return the common node of two linked lists merged into a 'Y' shape.
Recall a situation at work where you would have done something differently?
Are you Greek?
Name a time where you caught a co-worker doing something dishonest. How did you handle? Name a time where you had to work with someone who had a difficult personality. How did you handle it?
Is there anyone who is going to F2F on 3/6/17 @ 7:30 am?
make sure you pay attention to the intro video!!!!! Based on the introductory video.. what was one thing you felt excited or nervous about becoming a Delta flight attendant?
Viewing 531 - 540 interview questions