Qualitest interview question

Write a method that returns if the string is Palindrome.

Interview Answers

Anonymous

10 Nov 2019

Simple 'for' loop that starts at the start and the end of a string.

Anonymous

19 Nov 2021

Reverse the string and compare it with the original, if equals then it’s palindrome

1