C3 AI Interview Question

Write a program to determine if a string is a palindrome

Interview Answer

Anonymous

Jun 13, 2019

You could show some sophistication and use Stack for pushing and popping as you traverse. Or use some complicated logic using in for loop.