Google Interview Question
1,230 Interview Reviews |
Back to all Google Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Software Engineer at Google:
Helpful Question?
Yes |
No
Inappropriate?
0 of 0 people found this helpful
by Liron:
if (i > j){
return -1;
}
int mid = (i+j)/2;
if (arr[mid] == num){
return mid;
}
if (arr[mid] < num{
return binSer(mid+1,j,num,arr)
}
else {
return binSer(i,mid,num,arr)
}
}