Question d’entretien chez Qualitest

Write a method that returns if the string is Palindrome.

Réponses aux questions d'entretien

Utilisateur anonyme

10 nov. 2019

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

Utilisateur anonyme

19 nov. 2021

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

1