Amazon Interview | Set 112 (On-Campus)

Amazon visited our campus and was hired as intern. These are the questions that I faced.

E.g. : I/p : txt[] = “BACDGABCDA” pat[] = “ABCD”
o/p :0,5,6 

2. There is a matrix mat[m][n] with entries as 0 or 1 When you are at 1 you can move in all the eight directions and when at 0, you have to return back. Find the number of cluster of 1’s

e.g. input  { {1,1,0,0,0},
             {1,0,0,1,0},
             {0,0,0,1,1},
             {1,0,1,0,0}  }
output 3

clusters ((0,0),(0,1),(1,0))    
         (1,2),(2,2),(2,3),(3,2)        
         (3,0)

Round 1:
1) Introduce yourself.

2) Any moment when you worked really really hard to solve a problem.

3) Find the best fit for a packet to be fitted in a rack rack sizes are given in increasing order in other words find the ceil value of a key in sorted array.

5) Find the lowest common ancestor in binary tree
6) If I have any question to ask him

Round 2:

1) Find largest sum contiguous subarray in goven array
2) If I had any question to ask him

All Practice Problems for Amazon !