eBay Interview Question
106 Interview Reviews |
Back to all eBay Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Software Engineer at eBay:
Helpful Question?
Yes |
No
Inappropriate?
0 of 0 people found this helpful
by Interview Candidate:
for (int i=0; i < a.length; ++i) {
h.put(a[i], i);
}
for (int i=0; i < h.keys.length; ++i) {
int match = sum - h.keys[i];
if (h.get(match) != null) {
print h.keys[i] + "," + h.keys[match];
}
}