Amazon Interview Question for Software Engineer / Developers


Country: Luxembourg
Interview Type: Written Test




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

example array: {1,1,2,2,3,3,4,4,5,5,5,6,6,7,7,8,8,8,8,9,9,10,10}

XOR each element with each other: all integers appearing an even amount of times will cancel each other out leaving the only element appearing an odd number of times (7 XOR 7 XOR 7 = 0 XOR 7 = 7).

- Anonymous April 03, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 6 vote

1) Use XOR operator - xor each element in the array then duplicated elements will reduce each other ; time O(n), space O(1)
2) Use Set - add elements to the Set. If the set already contains given element then remove from the set. At the end set will contain only not duplicated element; time O(n), space O(n)
3) Sort array and use running counter to find not duplicated element; time O(nlogn), space O(1)

- thelineofcode April 03, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

1. Do ExOr of all the elements. the result will be the output........ O(N)
2. Hashing can be used.......... O(N)
3. Sorting and iteration can be used...... O(NlogN)

- Atul Gupta April 09, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

import java.util.*;
import java.io.*;

//Time Complexity: O(n)

public class Gap
{

    public static void main(String args[])
    {
       int arr[] = {1,1,2,2,3,3,4,4,5,5,5,6,6,7,7,8,8,8,8,9,9,10,10};
       
       ArrayList<Integer> odd = new ArrayList<Integer>();
       
       for(int n : arr)
       {
           int result = odd.indexOf(n);
           if(result != -1)
           {
              odd.remove(result);               
           }
           else
           {
              odd.add(n);
           }           
       }
       
       System.out.println("\nNumber occuring Odd number of times: ");
       
       ListIterator<Integer> listPtr = odd.listIterator();
       
       while(listPtr.hasNext())
       {
           System.out.println(listPtr.next());
       }
    }  

}

- internhunt7 April 10, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

I believe this would not be O(n) since ArrayList would search linearly for every single search. HashMap is a better option.

- internhunt7 April 10, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

A : using XOR ( Code below - assuming Sorted array.. ) - O(n)
B: Use HashTable

#include <stdio.h>
#include <stdlib.h>

void printOddOccuringElements(int arr[], int length)
{
        int temp[length];
        int currentNum = arr[0];
        int XORForCurrent = currentNum;
        //Assuming Sorted
        for( int i = 1 ; i <= length ; i++) {
                if(arr[i] == currentNum){
                        XORForCurrent ^=arr[i];
                }else{
                        if (XORForCurrent != 0 ){
                                printf("OddOccurances of %d found\n", XORForCurrent);
                        }else{
                                printf("EvenOccurances of %d found\n",currentNum);
                        }
                        currentNum = arr[i];
                        XORForCurrent = currentNum;
                }
        }
}
int main(int argc , char **argv)
{
        int arr[10]= {0,0,1,1,1,2,2,2,3,3};
        printOddOccuringElements(arr, 10);
        return 0;
}

- Arun Bhakthavalsalam April 13, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

#include<iostream>
using namespace std;
int main()
{
   
              int n,a[10000],ans=0;
              scanf("%d",&n);
              
              for(int i=0;i<n;i++)
              {
                      cin>>a[i];
                      ans=ans^a[i];
                      
              }
              cout<<ans<<endl;
    return 0;
}

- jindal.manishkumar1 June 18, 2014 | 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