Intuit Interview Question
116 Interview Reviews |
Back to all Intuit Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Software Engineer at Intuit:
Helpful Question?
Yes |
No
Inappropriate?
Answers & Comments (2)
var palindrome = "dogeeseseegod"
int x = 0;
int y = palindrome .length-1;
while(x <= y)
{
if(palindrome [x] != palindrome [y])
return false;
x++;
y--;
}
return true;
Helpful Answer?
Yes |
No
Inappropriate?
To comment on this
question,
Sign In with Facebook or
Sign Up



0 of 0 people found this helpful
by Anonymous: