Pergunta de entrevista da empresa BioT

Write a function that takes a string as input and returns True if it is a palindrome (ignoring spaces, case, and punctuation), otherwise False

Resposta da entrevista

Sigiloso

5 de mar. de 2025

wrote a function that first removes non-alphanumeric characters, converts the string to lowercase, and then checks if it reads the same forward and backward. Here’s my solution in Python