Empresa engajada
Write an algorithm to determine whether a string is a palindrome.
Sigiloso
Would you be able to post here the questions during the coding phone Interview or the actual code if you have it .
``` def ispalindrome(s): ''' >>> ispalindrome('bob') True ''' return len(s) > 2 and s == ''.join(reversed(s)) ```
Fique por dentro de todas as oportunidades e dicas internas seguindo as empresas de seus sonhos.
Comece a buscar vagas para receber atualizações e recomendações personalizadas.