Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Write C Palindrome Loop

EasyPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Write C Palindrome Loop. Start with the requirements on the right.

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.

Problem

Infineon AURIX TC4x diagnostic tools may inspect short trace labels during embedded debugging. Write a function that determines whether a label is a palindrome using a while loop.

A string is a palindrome when it reads identically from left to right and right to left. Treat characters as case-sensitive, and do not remove spaces, punctuation, or other characters.

Formal Specification

Implement is_palindrome(text), which receives a non-empty string text and returns a Boolean:

  • Return True if text is a palindrome.
  • Return False otherwise.

Use two indices, one starting at the beginning and one at the end. Compare the characters while the indices have not crossed. The implementation must use a while loop for the comparison process.

Constraints

  • 1 <= len(text) <= 10^5
  • text contains printable ASCII characters
  • Comparisons are case-sensitive
  • Spaces and punctuation are significant
  • Do not directly reverse the string with a library operation

Function Signature

def is_palindrome(text):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output