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

Palindrome Function Coding

EasyPython

Problem

As part of validating text inputs used in Doit International QA workflows, determine whether a given string is a palindrome. A palindrome reads the same from left to right and right to left. Treat uppercase and lowercase letters as different characters, and do not ignore spaces, punctuation, or other symbols.

Return True when the complete string is a palindrome; otherwise, return False.

Formal Specification

Implement is_palindrome(s), where s is a string and the return value is a Boolean. Compare characters from both ends toward the center. The function must not modify the input string.

Constraints

  • 0 <= len(s) <= 10^5
  • s contains printable ASCII characters
  • An empty string is considered a palindrome
  • The input string must not be modified

Function Signature

def is_palindrome(s):
Interviewer

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