TripAdvisor Interview Question
68 Interview Reviews |
Back to all TripAdvisor Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Not Specified at TripAdvisor:
Helpful Question?
Yes |
No
Inappropriate?



0 of 0 people found this helpful
by SteveJackson:
{
if(input==null || input.length()<=1)
return input;
return strRev1(input.substring(1))+input.charAt(0);
}