Sobes.tech
Middle
2

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

Companies where asked
Sapiens Solutions