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

Palindrome Function

EasyPython

Problem

City National Bank uses validation rules for certain internal reference labels. Write a function that returns whether a label is a palindrome, meaning it reads the same from left to right and right to left.

Compare characters exactly as provided. Letter case, spaces, punctuation, and digits are significant. For example, "Level" is not a palindrome because L and l differ.

Formal Specification

Implement is_palindrome(text).

  • Input: text, a string containing zero or more characters.
  • Output: Return true if text is a palindrome, otherwise return false.

Constraints

  • 0 <= len(text) <= 100,000
  • text may contain letters, digits, spaces, and punctuation
  • Characters are compared exactly, including case and whitespace

Function Signature

def is_palindrome(text):
Interviewer

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