Question d’entretien chez GE Vernova

Make a function to detect a palindrome word using only one string variable (the one passed as a parameter).

Réponse à la question d'entretien

Utilisateur anonyme

28 mars 2017

Using a for loop to compare each character of the word in a mirror-way, the first character against the last, the second against the second to last, and so on. Whenever a difference was found, the function returned false, otherwise, true was returned indicating the word was a palindrome.