Manhattan Associates Interview Question

Write a program that checks if a string is a palindrome.

Interview Answer

Anonymous

Feb 12, 2016

Create a for loop that flips the string and compare to the original input for equality.

1