I applied through an employee referral. The process took 6 days. I interviewed at Amazon (Seattle, WA) in Jan 2012
Interview
My friends hand in my resume and I get the on-site interview directly.
The interview process is basical, first have a lunch with several amazon employee. Then each candidate was brought to the room and start the interview. I had four interviews in total, and I did perfectly in the first one, the second one and the last one. I think they fail me because I didnt do well in the third one. So, just bear in mind that Amazon is very picky, if you screw up one of the four interviews, then you fail.
Interview questions [4]
Question 1
How to save a dictionary.
Easy one, just use a trie. During the process, you will be asked questions about big O stuffs. Just remember your data structure
How to find every word in one paragraph and return back the 10 most frequently words.
Easy one again. Use a hashtable to store the words, after that, use a heap to return the 10 most
Numerical Roman numbers.
I screw up this one. That's because the interviewee gave me a sheet full of rules, but only two of them are useful in the first part.
First part: given a formatted Roman String and convert them into numbers.
Easy one, but I spend nearly 25 mins on it.
Second part: how to convert a number into Roman Strings.
Recursion will work. I only have ten mins, so the interviewee doesnt let me finish this up
You have a node, each have three fields: value, next and random. How to make a deep copy.
The interviewee is helpful, he gave me hints and I finally solve it. First copy the list with only value and next. Save each one in the hashtable. And then change the random value.
The process took 3 months. I interviewed at Amazon (Seattle, WA) in Dec 2011
Interview
The recruiters were friendly; aced through 2 telephonic interviews and was invited to the on-site interviews. On the day of interview, I was interviewed by 5 amazonians; 4 tech and 1 lunch interview. I believe I did well in all but the first interview... After a week, I was notified that I wasn't selected to make a job offer. I guess I was disappointed, as I thought I did well, but wasn't made an offer. But, then your performance is relative to the other candidates they interviewed...
I applied through a recruiter. The process took 1 day. I interviewed at Amazon (Cambridge, MA) in Jan 2012
Interview
They were building a new site in Cambridge so they had the interview in Boston at a hotel. I waited in the lobby for the interviewers, who arrived in an elevator and then took you to be interviewed. Others also waited in the lobby to be interviewed. I was told there would be either 2 or 4 1:1 interviews, each about an hour.
The interview itself was primarily what my experience was, followed by questions about things I had done, followed by coding problems. Then I was asked if I had any questions for them.
I was already happily employed and would not have looked forward to driving to Cambridge. That day it took me 1.5 hours to arrive. Also I had read about carrying a pager here on glassdoor.com, and asked the interviewers about that. One said you carry it for a week every month; the next said you carry it for a week every 2 months.
I was told at the end of my 2nd interview that there would be just 2 interviews that day. I responded, "That must be a bad sign" with the response that it probably wasn't a good sign. Sure enough I did not get the job.
Interview questions [2]
Question 1
Given the word "HEAD" and the word "TAIL," write code and/or describe using computer science algorithms how you would transform from the word HEAD to the word TAIL. Each change must be by only one letter, you cannot change the letter in a given position twice, and each new word must be a valid word.
Given a binary tree with the usual left and right pointers on each node, and additionally a parent pointer, make an algorithm to discover the closest ancestor to 2 nodes on the tree.