Sollicitatievraag bij GE Vernova

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

Antwoord op sollicitatievraag

Anoniem

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