Amazon Interview Question for Software Engineer / Developers


Country: India
Interview Type: Phone Interview




Comment hidden because of low score. Click to expand.
0
of 0 vote

For 2nd solution you dont need to traverse the hash table,
1st insert the elements of 1st array in hash table(let their value be 1), for each element from 2nd array check if its already present or not, if it is present and its value is 1 then put 2 there and count that as one duplicate else if its value is 2 then dont count it because it has already been counted.

- Wayne December 22, 2011 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

another approach is to construct a BST with each node also containing a count of occurances

- Anonymous December 22, 2011 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Assuming sizes of the two lists n, m.
1. If |n - m| is not very large, then sort both and merge -> O(nlogn + mlogm)
2. If |n - m| is very large (assume n <<< m), then create Balanced BST
   for the list of size n, and do look up for elements in list of size m
   O(nlogn + mlogn)

- kartikaditya December 23, 2011 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More