Amazon Interview Question for Quality Assurance Engineers


Team: Kindle
Country: India
Interview Type: In-Person




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

This is other way to do it, without visiting every cell in the matrix, starting at 0,0 in clockwise direction and using a NxN matrix

public void  getPosition(int matrixSize, int kth) {
		int start = 0;
		int block = matrixSize - 1;
		while (matrixSize > 1 && kth > block * 4) {
			matrixSize -= 2;
			start++;
			kth -= (block * 4);
			block = matrixSize - 1;
		}
		if (kth <= block) {
			System.out.println(start + "," + (start + kth - 1));
		} else if (kth <= block * 2) {
			System.out.println((start + kth - block - 1) + "," + (start + block));
		} else if (kth <= block * 3) {
			System.out.println((start + block) + "," + (start + block - (kth - block * 2 - 1)));
		} else {
			System.out.println((start + block - (kth - block * 3 - 1)) + "," + (start));
		}
	}

- Motakjuq September 27, 2016 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

// in JAVA

public class SpiralArray{

public static int printSpiral(int r,int c,int A[][],int z){

int i,k=0,l=0;
/* k= starting row index
r= ending row index
l= starting column index
c= ending column index
*/
//,ra=0;
while(k<r && l<c)
{
for(i=l;i<c;i++)
{if(z==0) return A[k][i];z--;}
//ra=A[k][i];//System.out.print(A[k][i]);
k++;
for(i=k;i<r;i++)
{if(z==0) return A[i][c-1];z--;}
//ra=A[i][c-1];//System.out.print(A[i][c-1]);
c--;
if(k<r){
for(i=c-1;i>=l;i--)
{if(z==0) return A[r-1][i];z--;}
//ra=A[r-1][i];//System.out.print(A[r-1][i]);
r--;
}
if(l<c){
for(i=r-1;i>=k;i--)
{if(z==0) return A[i][l]; z--;}
//ra=A[i][l];//System.out.print(A[i][l]);
l++;
}

}
//System.out.print(ra);
return 0;
}

public static void main(String args[]){
int R=5,C=5,z=13; // zth element to find
int[][] A= new int[][]{ {1,2,3,4,5},
{6,7,8,9,10},
{11,12,13,14,15},
{16,17,18,19,20},
{21,22,23,24,25}
};
int ra= printSpiral(R,C,A,z-1);
System.out.print(ra);
}

}

- flyboyravi September 23, 2016 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

row = k/n
column = k%n

- Anonymous November 02, 2016 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

javascript implementation O(N)

let matrix = [];
for(var i = 0 ; i < 10 ; i++){
    let arr = [];
    matrix.push(arr);
    for(let j = 0; j < 10; j++){
        arr.push(i*10 + j);
    }
}
console.log(matrix);

function findKth(k, matrix){
    if(k <= 0 || k >matrix.length * matrix.length){
        return null;
    }
    let startEdge = matrix.length;
    let index = 0;
    while(k > ((startEdge * 4) - 4)){
        k -= ((startEdge * 4) - 4);
        index++;
        startEdge -= 2;
    }
    return findOnBorder(matrix, k, index, startEdge);
}

function findOnBorder(matrix, k, startPoint, edgeLength){
    console.log('border')
    k--;
    if(k < edgeLength - 1){
        // top part
        return matrix[ startPoint][startPoint + k ];
    }
    k -= edgeLength - 1;
    if(k < edgeLength - 1){
        // right part
        return matrix[startPoint + k ][startPoint + edgeLength - 1 ];
    }
    k -= edgeLength - 1;

    if(k < edgeLength - 1){
        // bottom

        return matrix[ startPoint + edgeLength - 1 ][startPoint + edgeLength - 1 - k ];
    }
    // left side
    k -= edgeLength - 1;
    return matrix[ startPoint + edgeLength - 1  - k ][startPoint ];
}

console.log(findKth(37, matrix));
// print 11
console.log(findKth(100, matrix));
// print 54
console.log(findKth(50, matrix));
// print 78
console.log(findKth(64, matrix));
// print 21
console.log(findKth(65, matrix));
// print 22

- benmeiri84 December 26, 2016 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

public  int FindKthSpiralValue(int[][] N, int kth)
{
	if(kth >= N.Length*N.Length || kth < 0) 
		throw ArgumentOutOfRangeException("kth");

	int startx = 0;
	int starty = 0;
	int endx = N.Length-1;
	int endy = N.Length-1;
	
	while(true)
	{
		for(int i = startx; i < endx; i++)
		{
			if(kth == 0) return N[i][starty]l;

			kth--;
		}

		for(int j = starty; j < endy; j++)
		{
			if(kth == 0) return N[endx][j];

			kth--;
		}

		for(int k = endx; k > startx; k--)
		{
			if(kth == 0) return N[k][endy];
			kth--;
		}

		for(int l = endy; l > starty; l--)
		{
			if(kth == 0) return N[startx][l];

			kth--;
		}

		startx++;
		starty++;
		endx--;
		endy--;
	}
}

- Nelson Perez September 18, 2016 | 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