Amazon Interview Experience | Set 211 (On-Campus for Internship)

Amazon visited our campus for hiring Software Developer interns for Summer 2016. All CS and IT students were eligible.

Round 1 (Coding + Aptitude):
First round comprised of problems on OS, DS, Basic Aptitude, Algorithms, Time Complexity etc. followed by 2 coding questions on HackerRank platform
1. Find the nth Magic Number where a Magic Number is either a power of 5 or the sum of unique powers of 5. Eg. 5,25,30(25+5),125,130(125+5),…
2. Given a dictionary find if any possible division of the input string corresponds to strings present in the dictionary. Eg. If “i” and “like” are present in the dictionary, we need to find if the given input string(say “ilike”) can be divided such that its components are members of the dictionary.

18 students were shortlisted after this round.

Eg. Consider the matrix 
     1111000 
     1000000 
     1110000 
     1100000

Your program should return row=1(1 based indexing)
Expected complexity = O(r+c) where r is the number of rows and c is the number of columns.

I started out with O(r*c), then optimized to O(rlogc) and finally O(r+c).

Problem 2
Given three points in space find if a triangle exists.

Problem 4 Given points in space, how will you determine whether the points given are in clockwise order.

All the problems required full working code for the most optimized approach.

10 students were further shortlisted for the next round.

Round 3(F2F)
We initially discussed about my project including the future course that I would like to further steer my project in.

Problem 1 Given a Binary Tree, find if it is a Binary Search Tree with constant space complexity.

(Hint: Build a reserve array such that R[i] = P[i] – L[i])

Full working code was required in this case as well.

After this round, 6 students were selected for internship.

TIPS:

    1. Stay calm
    2. Remain super confident throughout. That is the key.
    3. Have faith in yourself
    4. Your implementation skills must be real good.

All thanks to w3wiki for helping me with my preparation and for being an excellent repository of past Interview Sets.

 

All Practice Problems for Amazon !