Pregunta de entrevista de Meta

Write an algorithm to determine whether a string is a palindrome.

Respuestas de entrevistas

Anónimo

30 abr 2019

Would you be able to post here the questions during the coding phone Interview or the actual code if you have it .

Anónimo

24 feb 2020

``` def ispalindrome(s): ''' >>> ispalindrome('bob') True ''' return len(s) > 2 and s == ''.join(reversed(s)) ```