Pergunta de entrevista da empresa Meta

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

Respostas da entrevista

Sigiloso

30 de abr. de 2019

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

Sigiloso

24 de fev. de 2020

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