Cargando el ejercicio…
Real phrases often contain spaces, punctuation, and mixed letter case, but those can be noise when checking a palindrome. Given a string s, consider only letters and digits. Ignore case, so A and a count as the same character. Return True if the cleaned string reads the same forward and backward; otherwise, return False.
"A man, a plan, a canal: Panama"True"race a car"False" "Truedef is_palindrome(s: str) -> bool:
Inicia sesión para ver tu historial de envíos
Iniciar sesiónInicia sesión para usar el AI Mentor
Iniciar sesiónThey run when you press "Submit" — your whole solution is checked against them so you can't hard-code answers for the visible cases.