Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Palindrome Check in Any Language
00:00
5 left

Palindrome Check in Any Language

EasyPython

Problem

For a text validation utility in a 3Pillar project, determine whether an input string is a palindrome. Compare only alphanumeric characters, ignoring spaces, punctuation, and letter casing.

Formal Specification

Implement is_palindrome(s), which accepts a string s and returns a boolean. Return True when the normalized sequence of alphanumeric characters reads identically from left to right and right to left. Return True for an empty normalized sequence.

Use a two-pointer approach that compares characters from both ends toward the center. Do not use slicing to reverse the entire string in the primary solution.

Constraints

  • 1 <= len(s) <= 2 * 10^5
  • s contains printable ASCII characters
  • Letters are compared case-insensitively
  • Non-alphanumeric characters are ignored

Function Signature

def is_palindrome(s):
Interviewer

Your question is Palindrome Check in Any Language. 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.