Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Palindrome String Function
00:00
5 left

Palindrome String Function

EasyPython

Problem

PenFed Credit Union needs a utility that identifies whether a member-note string is a palindrome for a data-quality rule. A string is a palindrome when its alphanumeric characters read the same forward and backward, ignoring letter case, spaces, and punctuation.

Implement is_palindrome(text) to return True when text is a palindrome under these rules. Otherwise, return False.

Formal Specification

  • Input: text, a string containing letters, digits, spaces, and punctuation.
  • Output: A Boolean. Return True if the filtered, case-insensitive string is a palindrome, otherwise False.

Constraints

  • 0 <= len(text) <= 100,000
  • text contains letters, digits, whitespace, and punctuation
  • Comparisons are case-insensitive
  • Non-alphanumeric characters are ignored

Function Signature

def is_palindrome(text):
Interviewer

Your question is Palindrome String Function. 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.