Domanda di colloquio di GE Vernova

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

Risposta di colloquio

Anonimo

28 mar 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.