Sobes.tech
Middle
16

def is_palindrome(string_to_check: str) -> bool: gauche, droite = 0, len(string_to_check) while gauche < droite: while gauche < droite and not string_to_check[gauche]: gauche += 1 while gauche < droite and not string_to_check[droite]: droite -= 1

Entreprises à qui on a demandé
Sapiens Solutions