MySpace Interview Question
19 Interview Reviews |
Back to all MySpace Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Senior Developer at MySpace:
Helpful Question?
Yes |
No
Inappropriate?
0 of 0 people found this helpful
by Interview Candidate:
int x;
if(intArray.length == 0) {
return -1; //no array passed in
}
x = inArray[0];
for(int i =1; i <= intArray.length; i++) {
if( x <= intArray[i]) {
x = intArray[i];
}
}
return intArray[i];
}