I applied online. The process took 3 weeks. I interviewed at Booking.com in May 2014
Interview
Applied online. After a week have hr initial interview. First technical interview went good. After a few days hr representative scheduled another phone technical interview. That one gone notso good. After a week I've got negative email response.
Interview questions [2]
Question 1
Given 2 arrays of unsorted integers with repetitions. Find a way to output only elements that appear in one of the arrays (only unique values) 1 2 3 4 5 , 5 6 7 the result 1 2 3 4 6 7
Parse a log files and get sorted list of resources usage per key
Keys File structure (log file names to key mapping)
Log1 key1
Log2 key2
Log3 key3
...............
Log file structure (content of the log file mapping of resourses and return codes):
Resource 1 200
Resource 2 403
Resource 3 500
Resource 1 201
................
The result should be ordered list of
Key2 , resource1, 230
Key3, resource 2, 205
............