Amazon Interview Question for SDE-2s


Country: United States




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

import java.util.*;

public class AdjacentNumbers {
	public static void bfs(int m, int n, int num) {
		Queue<Integer> q = new LinkedList<Integer>();
		q.add(num);
		while (!q.isEmpty()) {
			int stepNum = q.poll();
			if (stepNum <= n && stepNum >= m) {
				System.out.print(stepNum + " ");
			}
			if (stepNum == 0 || stepNum > n)
				continue;
			int lastDigit = stepNum % 10;
			int stepNumA = stepNum * 10 + (lastDigit - 1);
			int stepNumB = stepNum * 10 + (lastDigit + 1);
			if (lastDigit == 0)
				q.add(stepNumB);
			else if (lastDigit == 9)
				q.add(stepNumA);
			else {
				q.add(stepNumA);
				q.add(stepNumB);
			}
		}
	}

	public static void main(String args[]) {
		int n = 0, m = 21;
		for (int i = 0; i <= 9; i++)
			bfs(n, m, i);
	}
}

- ayushmittal1903 July 02, 2019 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

void DifferenceBetweenAdjacentDigits(int m, int n)
{
for (int i = m; i <= n; i++)
{
if (i <= 9)
{
Console.WriteLine(i);
}
else
{
int unitsDigit = i % 10;
int tensDigit = i / 10;
int difference = Math.Abs(unitsDigit - tensDigit);
if (difference == 1)
{
Console.WriteLine(i);
}
}
}
}

- Ravi Teja July 29, 2019 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

void DifferenceBetweenAdjacentDigits(int m, int n)
        {
            for (int i = m; i <= n; i++)
            {
                if (i <= 9)
                {
                    Console.WriteLine(i);
                }
                else
                {
                    int unitsDigit = i % 10;
                    int tensDigit = i / 10;
                    int difference = Math.Abs(unitsDigit - tensDigit);
                    if (difference == 1)
                    {
                        Console.WriteLine(i);
                    }
                }
            }
        }

- Ravi Teja B July 29, 2019 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

void DifferenceBetweenAdjacentDigits(int m, int n)
        {
            for (int i = m; i <= n; i++)
            {
                if (i <= 9)
                {
                    Console.WriteLine(i);
                }
                else
                {
                    int unitsDigit = i % 10;
                    int tensDigit = i / 10;
                    int difference = Math.Abs(unitsDigit - tensDigit);
                    if (difference == 1)
                    {
                        Console.WriteLine(i);
                    }
                }
            }
        }

- Ravi Teja B July 29, 2019 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

public ArrayList<Integer> adjacents (int n, int m){
    	ArrayList<Integer> results = new ArrayList<>();
    	for(int i = 0; i<m; i++){
    		if(i<=9){
    			results.add(i);
    		} else {
    			int firstDigit = i / 10;
    			results.add(i+(firstDigit-1));
    			results.add(i+firstDigit+1);
    			i+=9;
    		}
    	}
    	return results;
    }

- Eleanor Richie July 07, 2019 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

public ArrayList<Integer> adjacents (int n, int m){
    	ArrayList<Integer> results = new ArrayList<>();
    	for(int i = 0; i<m; i++){
    		if(i<=9){
    			results.add(i);
    		} else {
    			int firstDigit = i / 10;
    			results.add(i+(firstDigit-1));
    			results.add(i+firstDigit+1);
    			i+=9;
    		}
    	}
    	return results;

}

- Eleanor Richie July 07, 2019 | 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