Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Palindrome Check With Constraints
00:00
5 left

Palindrome Check With Constraints

EasyPython

Problem

CGI Advantage integrations may receive identifiers and messages containing punctuation, spacing, and inconsistent capitalization. Implement a function that determines whether the meaningful characters form a palindrome.

A string is a palindrome when it reads identically from left to right and right to left after ignoring every non-alphanumeric character and treating uppercase and lowercase letters as equivalent.

Formal Specification

Given a string s, return a boolean:

  • Return True if the normalized string is a palindrome.
  • Return False otherwise.
  • Letters and digits are alphanumeric. Punctuation, whitespace, and symbols must be ignored.
  • The input is a single Python string, and the function must not modify it.

Constraints

  • 1 <= len(s) <= 2 * 10^5
  • s contains printable ASCII characters
  • The input may contain letters, digits, whitespace, punctuation, and symbols
  • A string containing no alphanumeric characters is considered a palindrome

Function Signature

def is_palindrome(s):
Interviewer

Your question is Palindrome Check With Constraints. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.