Microsoft Interview Question for Software Engineer / Developers






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

Hi All. It seems none of you have figured out the correct solution.
Have a look:
If n is a k bit binary number we can view the array A as a k by n two dimensional array such that A[i; j] is the ith most significant bit of the jth element of A. Examining an elment of this 2D matrix has unit cost.
To begin with assume n = 2^k - 1 so there are n + 1 = 2^k potential numbers. The basic idea is as follows:
half the potential numbers have a zero in their most significant bit position and half have a 1.
Thus we count the number of 0's and store this in Z. If Z equals 2^k -1 then we know there are only n - 2^(k - 1) = 2^(k-1) - 1 numbers starting with 1, so the missing number starts with a 1 and we can ignore all the numbers which start with a zero.
We now have a new problem of exactly the same form as the original: Find the missing number among the 2^(k-1) -1 numbers in our list which start with a 1 out of the 2^(k-1) possible numbers which start with a 1.
Array B records each index of a number in A which start with a 1.
Similarly, If Z = 2^(k-1) -1 we know the missing value starts with a zero, and we focus on the locations in A whose first bit is zero.
Thus we can do exactly the same process on the next most significant bit, considering only those numbers which start with a 1.
We will again find whether our missing number has a zero or one in its second most significant bit position, and will thus be able to eliminate half the "live" locations in A.
If there are m live positions in A we can eliminate half the live positions in O(m) time since we just need to check the current bit in each live position and record the index of each live number in our new list. Thus we get a recurrence of T(n) = cn + T(n=2) which has solution of T(n) = O(n)
(using the master method or just expanding it).
When n < 2^k - 1 we do not have an exactly even split at each step. However, we can easily calculate the ideal number of 0's and 1's at each step (e.g. if n is a k-bit number, there will be exactly 2^(k-1) possible k-bit numbers which start with a bit of zero, and (n + 1) - 2^(k-1) possible k-bit numbers
which start with a bit value of 1 (since n + 1 total values in the range 0..n.) ) So we can tell which bit value is missing at each step.
Also, if we fix the value of the first b bits, the number of possible values is always at most 2^(k-b) , so this upper bound does half at each step

- 2Face June 13, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

Hope you understand this. :)

- 2Face June 13, 2010 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

Add all the integers and subtract it from the (n(n+1)/2) ... the missing number is the difference

- Vamsi November 29, 2007 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

require O(n) time

this way takes 32 times to fetch a single interger,
total O(32n), not so good

- redroof November 16, 2008 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 votes

@ redroof

O(32n) is O(n). Particularly when n is large, then this equation is very much true. Now what is not good ? Did u try to understand what is not good ?

- peace November 16, 2009 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 votes

If there are n numbers, each number has lg(n) bits. So this is O(n lg(n)) time, not O(n) time.

- ctu February 17, 2013 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

Every bit has an occurrence frequency for the bit 1.
This frequency is n for pos 1.
n/2 for pos 2.
n/4 for pos 3 and so on.
Find the freq of all the bits and compare with the actual count that needs to be present. The position where the bit count is less or more gives a way to construct the missing number.

- nick February 04, 2008 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

The solution that take sum of n numbers and subtract the sum of no given in order to find the missing no is not accurate as it will be exponential in nature. remember you are finding the product as n(n+1)/2. if n is very large n won't be able to fit in 32 bit word and so this multiplication will go in exponential of the no. of bits used to represent the number n. The best solution is as follows:

Lets say n = 8 and u have no. from 0-7 write in binary form all the no.You need 3 bits to represent each no. Take the column representing the MSB. Now it should have equal no. of 1's and 0's but since there is one element missing so it will have one of 1 or 0 less. Find out by counting the total no. of 0 and 1 in MSB. Lets say no. of 1 is more than no. of 0 so it means the missing no has its MSB as 0. Repeat this for the second column of bits but now counting no. of 1 and o only for those digits which has 0 as the MSb and so in this iteration you only have to scan through n/2 elements. Do this until u r r done with the LSB and so the total time taken will be n + n/2 + n/4 + ---- = O(n) complexity.

- gauravk.18 February 17, 2008 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

What if n != 7, and n == 6?

- Aaron February 26, 2008 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 votes

Aaron, as far as I know this technique only works when n is a power of 2. If it is not, then this will fail.

- gauravk.18 April 08, 2008 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 votes

trying to extend Gaurav's method for n!=power of 2

we know n, so we know the no of 1s and 0s per bit, that wud have been present(apart from what we have now) if the array had actually contained numbers upto the next power of 2.
say n is 10010111 (8 digits)
then for LSB, since it is ending in 1, we will have equal no of 1s and 0s from n to the next power of 2. had it been zero, we wud have had one extra 1
for next bit, since it is one and all bits to its right(in this case, only the one LSB) are one, we will have equal number of 1s and zeroes
same for next bit
for the 4th bit, it is a 0. Also, all bits to its right are one, so on the next number, this bit will change to 1 and remain so for 2^3 numbers, when we will get a sequence of four 1s. after that thr will be equal number of 0s and 1s . so for this bit we have 8 extra 1s than 0s
for 5th bit, it is a one. The bits to its right are 0111. So (2^4-1) - 0111 = t(say). Then as we progress from n to 2^n-1, we first have t numbers where the 5th bit is 1, and then there we will have equal number of 0s and 1s(bcoz we have then arrived at the 11111 pattern)
So the GENERAL RESULT is that for any bit, if it is a 1, and the number formed by the 'q' bits to its right is 'y', then for that bit, we have 2^q -1 - y extra 1s over 0s. If that bit was 0 instead, then we will have (2^q-1) - (2^q-1 -y) extra 1s than zeroes, i.e y extra 1s than zeroes.
So using this general rule, we can compute the number of extra 1s or zeroes that wud be present for any bit in our array, had thr not been a number missing. Then we can add up and find the 'actual' difference in the number of 1s and zeroes for every bit in the array. Comparing the two, we will know the value of each bit of the missing number.

- ankit April 09, 2008 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

trying to extend Gaurav's method for n!=power of 2

we know n, so we know the no of 1s and 0s per bit, that wud have been present(apart from what we have now) if the array had actually contained numbers upto the next power of 2.
say n is 10010111 (8 digits)
then for LSB, since it is ending in 1, we will have equal no of 1s and 0s from n to the next power of 2. had it been zero, we wud have had one extra 1
for next bit, since it is one and all bits to its right(in this case, only the one LSB) are one, we will have equal number of 1s and zeroes
same for next bit
for the 4th bit, it is a 0. Also, all bits to its right are one, so on the next number, this bit will change to 1 and remain so for 2^3 numbers, when we will get a sequence of four 1s. after that thr will be equal number of 0s and 1s . so for this bit we have 8 extra 1s than 0s
for 5th bit, it is a one. The bits to its right are 0111. So (2^4-1) - 0111 = t(say). Then as we progress from n to 2^n-1, we first have t numbers where the 5th bit is 1, and then there we will have equal number of 0s and 1s(bcoz we have then arrived at the 11111 pattern)
So the GENERAL RESULT is that for any bit, if it is a 1, and the number formed by the 'q' bits to its right is 'y', then for that bit, we have 2^q -1 - y extra 1s over 0s. If that bit was 0 instead, then we will have (2^q-1) - (2^q-1 -y) extra 1s than zeroes, i.e y extra 1s than zeroes.
So using this general rule, we can compute the number of extra 1s or zeroes that wud be present for any bit in our array, had thr not been a number missing. Then we can add up and find the 'actual' difference in the number of 1s and zeroes for every bit in the array. Comparing the two, we will know the value of each bit of the missing number.

- ankit April 09, 2008 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 2 vote

Another one:
If the numbers are too big, adding them may overflow.
Just take the XOR of all numbers in the array and then XOR the result with numbers 1 to N.
The result in the variable storing XOR would be the missing number

- varun_agg June 12, 2008 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

varun's solution is gud...but as it was said we can access the only bits but not entire number..we shud use bits to get the answer...

- deagle October 05, 2008 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

I agree, varun's sol is great! But yeah, only one bit at a time. But still great.

- Anonymous December 10, 2008 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 votes

wtf? Varun's 'great' solution is O (n log n) if you just access all the bits.

Don't you guys even read the question properly?

- T March 31, 2009 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

O(32n)=O(n) right?

- pseudo March 31, 2009 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

Yes, but n need not be 32 bit integer. If you access all the bits, then it is O(n log n) solution.

- T March 31, 2009 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 votes

@T What do you think is 'n' in that complexity? Size of int is fixed constant.

- user32456 June 28, 2012 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

does that say we don't have solution yet for this nice problem?

- abe dhakkan September 16, 2009 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

i guess so @ abe

- chinni_chor September 24, 2009 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

@abe dhakkan & @chinni_chor : the following is the working solution for this problem,

Our convention is to call the least significant bit (LSB) as 0-th bit. Number of digits required to represent n is at least lg(n + 1) . Most significant bit (MSB) of n is the ( lg(n + 1) − 1)-th bit of it. Among the integers between 0 to n, exactly 2( lg(n+1) −1) numbers are < 2( lg(n+1) −1) . If we look at the ( lg(n + 1) − 1)-th bit of any non-negative number ≤ n we can determine whether the number is < 2( lg(n+1) −1) . We now look at the ( lg(n + 1) − 1)-th bit of all the numbers in A[1...n]. We populate two lists of references (e.g. pointer, index, handle etc) during the first n lookup. Reference to the numbers having 0 in their ( lg(n + 1) − 1)-th bit are kept in one and the rest in the other. The size of the first list is the count of numbers < 2( lg(n+1) −1) . The missing integer is < 2( lg(n+1) −1) iff this count is 2( lg(n+1) −1) − 1. We look for the missing integer in the first list in that case. Otherwise, we look in the second list. In this
process, we figure out the ( lg(n + 1) − 1)-th bit of the missing integer in n bit lookup.
We want to use recursion to search the appropriate list. The fact that now we search in a list of references to numbers in stead of a list of numbers can be handled as follows. The initial problem comes with the list all the references. The fact that the search range could be shifted in the subproblem is handled by replacing all the ( lg(n + 1) − 1)-th bits as 0. However, as we never read the ( lg(n + 1) − 1)-th bits again we don’t have to do this modification explicitly.

- xinhua.liu@yahoo.co.cn October 02, 2009 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

geeze, it is just binary search,
give n, you should know from 1-n how many number has 1/0 for each bit,
so you will just do binary search,
check the first bit, see if the number that missing has the first bit 0 or 1,
then check the second bit from the result which has the missing number, and find whether it is 0/1.
keep going until you reach the last bit.

the time complexity is
n + n/2 + n/4 + ... ~= 2n

- Anonymous October 06, 2009 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Only the above solution seems to be close. As someone pointed out you cant even read (all bits of)all the numbers.

In the above solution, it makes more sense to read from right end towards left. And each time cutting down half the list. This leads to O(n) as shown mathematically above.

- Anonymous January 07, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Guys correct me if i am wrong:
if the array is sorted, then the LSB will toggle every time
LSB
00 0
00 1
01 0

Soln:

long value = 0;
char bit = fetch(0,A[0]);
for(i = 1 ; i < n ; i++,value++,  )
{
  if(bit == fetch(0,A[i]))
   break;
 bit = fetch(0,A[i]);
}  
printf("%ld",value);

- Vimarsh Puneet January 26, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

exactly what I had in mind~

but the list is un-sorted, isn't it?

- cyruz May 19, 2010 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

int j;
int k;
// hash into same array
for (int i = 0; i < a.Length; i++)
{
j = a[i];
while (j >= 1 && j <= a.Length
&& j != i+1 && a[j-1] != j)
{
// swap i and j
k = a[i];
a[i] = a[j-1];
a[j-1] = k;
// repeat
j = a[i];
}
}
// find missing
for (int i = 0; i < a.Length; i++)
{
if (i+1 != a[i])
{
return i+1;
}

}
// none are missing
return a.Length+1;
}

- ggg February 05, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Hi All. It seems none of you have figured out the correct solution.
Have a look:
If n is a k bit binary number we can view the array A as a k by n two dimensional array such that A[i; j] is the ith most significant bit of the jth element of A. Examining an elment of this 2D matrix has unit cost.
To begin with assume n = 2^k - 1 so there are n + 1 = 2^k potential numbers. The basic idea is as follows:
half the potential numbers have a zero in their most significant bit position and half have a 1.
Thus we count the number of 0's and store this in Z. If Z equals 2^k -1 then we know there are only n - 2^(k - 1) = 2^(k-1) - 1 numbers starting with 1, so the missing number starts with a 1 and we can ignore all the numbers which start with a zero.
We now have a new problem of exactly the same form as the original: Find the missing number among the 2^(k-1) -1 numbers in our list which start with a 1 out of the 2^(k-1) possible numbers which start with a 1.
Array B records each index of a number in A which start with a 1.
Similarly, If Z = 2^(k-1) -1 we know the missing value starts with a zero, and we focus on the locations in A whose first bit is zero.
Thus we can do exactly the same process on the next most significant bit, considering only those numbers which start with a 1.
We will again find whether our missing number has a zero or one in its second most significant bit position, and will thus be able to eliminate half the "live" locations in A.
If there are m live positions in A we can eliminate half the live positions in O(m) time since we just need to check the current bit in each live position and record the index of each live number in our new list. Thus we get a recurrence of T(n) = cn + T(n=2) which has solution of T(n) = O(n)
(using the master method or just expanding it).
When n < 2^k - 1 we do not have an exactly even split at each step. However, we can easily calculate the ideal number of 0's and 1's at each step (e.g. if n is a k-bit number, there will be exactly 2^(k-1) possible k-bit numbers which start with a bit of zero, and (n + 1) - 2^(k-1) possible k-bit numbers
which start with a bit value of 1 (since n + 1 total values in the range 0..n.) ) So we can tell which bit value is missing at each step.
Also, if we fix the value of the first b bits, the number of possible values is always at most 2^(k-b) , so this upper bound does half at each step

- 2Face June 13, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Hi All. It seems none of you have figured out the correct solution.
Have a look:
If n is a k bit binary number we can view the array A as a k by n two dimensional array such that A[i; j] is the ith most significant bit of the jth element of A. Examining an elment of this 2D matrix has unit cost.
To begin with assume n = 2^k - 1 so there are n + 1 = 2^k potential numbers. The basic idea is as follows: 
half the potential numbers have a zero in their most significant bit position and half have a 1. 
Thus we count the number of 0's and store this in Z. If Z equals 2^k -1 then we know there are only n - 2^(k - 1) = 2^(k-1) - 1 numbers starting with 1, so the missing number starts with a 1 and we can ignore all the numbers which start with a zero. 
We now have a new problem of exactly the same form as the original: Find the missing number among the 2^(k-1) -1 numbers in our list which start with a 1 out of the 2^(k-1) possible numbers which start with a 1. 
Array B records each index of a number in A which start with a 1.
Similarly, If Z = 2^(k-1) -1 we know the missing value starts with a zero, and we focus on the locations in A whose first bit is zero.
Thus we can do exactly the same process on the next most significant bit, considering only those numbers which start with a 1. 
We will again find whether our missing number has a zero or one in its second most significant bit position, and will thus be able to eliminate half the "live" locations in A.
If there are m live positions in A we can eliminate half the live positions in O(m) time since we just need to check the current bit in each live position and record the index of each live number in our new list. Thus we get a recurrence of T(n) = cn + T(n=2) which has solution of T(n) = O(n)
(using the master method or just expanding it).
When n < 2^k - 1 we do not have an exactly even split at each step. However, we can easily calculate the ideal number of 0's and 1's at each step (e.g. if n is a k-bit number, there will be exactly 2^(k-1) possible k-bit numbers which start with a bit of zero, and (n + 1) - 2^(k-1) possible k-bit numbers
which start with a bit value of 1 (since n + 1 total values in the range 0..n.) ) So we can tell which bit value is missing at each step. 
Also, if we fix the value of the first b bits, the number of possible values is always at most 2^(k-b) , so this upper bound does half at each step

- 2Face June 13, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

<pre lang="java" line="1" title="CodeMonkey69533" class="run-this">Hi All. It seems none of you have figured out the correct solution.
Have a look:
If n is a k bit binary number we can view the array A as a k by n two dimensional array such that A[i; j] is the ith most significant bit of the jth element of A. Examining an elment of this 2D matrix has unit cost.
To begin with assume n = 2^k - 1 so there are n + 1 = 2^k potential numbers. The basic idea is as follows:
half the potential numbers have a zero in their most significant bit position and half have a 1.
Thus we count the number of 0's and store this in Z. If Z equals 2^k -1 then we know there are only n - 2^(k - 1) = 2^(k-1) - 1 numbers starting with 1, so the missing number starts with a 1 and we can ignore all the numbers which start with a zero.
We now have a new problem of exactly the same form as the original: Find the missing number among the 2^(k-1) -1 numbers in our list which start with a 1 out of the 2^(k-1) possible numbers which start with a 1.
Array B records each index of a number in A which start with a 1.
Similarly, If Z = 2^(k-1) -1 we know the missing value starts with a zero, and we focus on the locations in A whose first bit is zero.
Thus we can do exactly the same process on the next most significant bit, considering only those numbers which start with a 1.
We will again find whether our missing number has a zero or one in its second most significant bit position, and will thus be able to eliminate half the "live" locations in A.
If there are m live positions in A we can eliminate half the live positions in O(m) time since we just need to check the current bit in each live position and record the index of each live number in our new list. Thus we get a recurrence of T(n) = cn + T(n=2) which has solution of T(n) = O(n)
(using the master method or just expanding it).
When n < 2^k - 1 we do not have an exactly even split at each step. However, we can easily calculate the ideal number of 0's and 1's at each step (e.g. if n is a k-bit number, there will be exactly 2^(k-1) possible k-bit numbers which start with a bit of zero, and (n + 1) - 2^(k-1) possible k-bit numbers
which start with a bit value of 1 (since n + 1 total values in the range 0..n.) ) So we can tell which bit value is missing at each step.
Also, if we fix the value of the first b bits, the number of possible values is always at most 2^(k-b) , so this upper bound does half at each step
</pre>

- Anonymous June 13, 2010 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

1) sort the numbers by radix sort O(32n)
2)then check last bit of each no....if 2 consecutive 0 or 1 comes then middle no is missing O(n)

complexity O(32n)+O(n)=O(n)

- nileshagarwal10 July 11, 2012 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Wouldn't it be possible to just construct the number by checking the bit counts in each position? For example if we have the integers 0,1,2,4,5,6,7 and 3 is missing then at position 0 we will have 4 zeros and 3 1s meaning were missing a 1 at position 0. at position 1 the same as position 0. at position 2 we will have 3 0 and 4 1 meaning were missing a 0 so we get (011)b = (3)d

- Daniel December 24, 2013 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

In the question it says, all integers except missing.

public static void main(String[] args){
		int[] arr = new int[]{0,1,3,4,5,6};

		System.out.println(findMissingIntegerInArray(arr));
	}
	
	public static int findMissingIntegerInArray(int[] arr){
		int lsb = 0;
		for(int i = 0; i < arr.length; i++){
			if(lsb == (arr[i] & 1)){
				lsb++;
				lsb = lsb % 2;
			}else {
				return i;
			}
		}
		
		return -1;
	}

- Osman January 25, 2015 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

In the question it says all integers except missing. If array is not sorted then it should be sorted first which will require an O(NlogN) time. After sorting count and check their lsb. If something is missing like 2 in this example return that value.

public static void main(String[] args){
int[] arr = new int[]{0,1,3,4,5,6};

System.out.println(findMissingIntegerInArray(arr));
}

public static int findMissingIntegerInArray(int[] arr){
int lsb = 0;
for(int i = 0; i < arr.length; i++){
if(lsb == (arr[i] & 1)){
lsb++;
lsb = lsb % 2;
}else {
return i;
}
}

return -1;
}

- Anonymous January 25, 2015 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

What if we want to find some x missing numbers from this array

- Anonymous October 15, 2019 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

What is j here?

- Anonymous November 14, 2007 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

Hi All. It seems none of you have figured out the correct solution.
Have a look:
If n is a k bit binary number we can view the array A as a k by n two dimensional array such that A[i; j] is the ith most significant bit of the jth element of A. Examining an elment of this 2D matrix has unit cost.
To begin with assume n = 2^k - 1 so there are n + 1 = 2^k potential numbers. The basic idea is as follows: 
half the potential numbers have a zero in their most significant bit position and half have a 1. 
Thus we count the number of 0's and store this in Z. If Z equals 2^k -1 then we know there are only n - 2^(k - 1) = 2^(k-1) - 1 numbers starting with 1, so the missing number starts with a 1 and we can ignore all the numbers which start with a zero. 
We now have a new problem of exactly the same form as the original: Find the missing number among the 2^(k-1) -1 numbers in our list which start with a 1 out of the 2^(k-1) possible numbers which start with a 1. 
Array B records each index of a number in A which start with a 1.
Similarly, If Z = 2^(k-1) -1 we know the missing value starts with a zero, and we focus on the locations in A whose first bit is zero.
Thus we can do exactly the same process on the next most significant bit, considering only those numbers which start with a 1. 
We will again find whether our missing number has a zero or one in its second most significant bit position, and will thus be able to eliminate half the "live" locations in A.
If there are m live positions in A we can eliminate half the live positions in O(m) time since we just need to check the current bit in each live position and record the index of each live number in our new list. Thus we get a recurrence of T(n) = cn + T(n=2) which has solution of T(n) = O(n)
(using the master method or just expanding it).
When n < 2^k - 1 we do not have an exactly even split at each step. However, we can easily calculate the ideal number of 0's and 1's at each step (e.g. if n is a k-bit number, there will be exactly 2^(k-1) possible k-bit numbers which start with a bit of zero, and (n + 1) - 2^(k-1) possible k-bit numbers
which start with a bit value of 1 (since n + 1 total values in the range 0..n.) ) So we can tell which bit value is missing at each step. 
Also, if we fix the value of the first b bits, the number of possible values is always at most 2^(k-b) , so this upper bound does half at each step

- 2Face June 13, 2010 | Flag
Comment hidden because of low score. Click to expand.
-1
of 1 vote

If they are ordered integers, they should go odd to even to odd to even. You only need to check the last bit, and if it does not switch between 1 and 0 then you know that the integer is missing. Take the index from the 1 or 0 skipped and you've found it.

- Anonymous December 04, 2007 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

the point is the blank element has to be represented by 0 or 1, which may mess things up.

- Anonymous January 14, 2008 | Flag
Comment hidden because of low score. Click to expand.
-1
of 1 vote

I cogitate the above sol. is the perfect ...

- Vamsi December 04, 2007 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

It should be sorted, or else I can't think of a solution.

- Nil March 23, 2008 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

People .... am I missing something or are you confused?

The point given is that we cant even read one integer completely into the memory ...All we can do is call a func(i,j) which returns jth bit of A[i]..... So at a time we will have access to 1 BIT OF 1 NUMBER in the array....

This cannot be done by n(n+1)/2 type methods....

- chinni October 02, 2008 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

Chill dudes

- Chuchu November 30, 2011 | Flag Reply
Comment hidden because of low score. Click to expand.
-2
of 2 vote

You can do this in log n time.

- Kumar December 20, 2007 | 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