Pergunta de entrevista da empresa Qualitest

Write a method that returns if the string is Palindrome.

Respostas da entrevista

Sigiloso

10 de nov. de 2019

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

Sigiloso

19 de nov. de 2021

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

1