Question d’entretien chez Google

Write a python code that goes through large datasets and identifies palindromes.

Réponse à la question d'entretien

Utilisateur anonyme

25 févr. 2019

x = 'anna' if x == x[::-1]: print ('its a palindrome') else: print ('its not a palindrome')