Frage im Vorstellungsgespräch bei GE Vernova

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

Antwort im Vorstellungsgespräch

Anonym

28. März 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.