write a recursive function that checks see if the first letter matches the last letter, return the middle letters and check until only 0 or 1 letters are left. It returns True or False.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question
write a recursive function that checks see if the first letter matches the last letter, return the middle letters and check until only 0 or 1 letters are left. It returns True or False.
 
Here is python code that needs to be fixed
 
 
 
 
# Returns the first character of the string str
def firstCharacter(str):
    return str[:1]

# Returns the last character of a string str
def lastCharacter(str):
    return str[-1:]

# Returns the string that results from removing the first
#  and last characters from str
def middleCharacters(str):
    return str[1:-1]

def isPalindrome(str):
    # base case #1
    # base case #2
    # recursive case
    pass


def isPalindrome(string):
    reversedString = string[::-1] 
    if reversedString == string: 
        return True
    else: 
        return False
inputString = input() 
string = inputString.replace(" ", "")
if isPalindrome(string):
    print(inputString,"is a palindrome") 
else: 
    print(inputString,"is not a palindrome") 
    
if __name__ == "__main__":

    assert firstCharacter('boot') == 'b'
    assert lastCharacter('boot') == 't'
    assert middleCharacters('boot') == 'oo'

    assert isPalindrome("a") == True
    assert isPalindrome("motor") == False
    assert isPalindrome("rotor") == True
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Computational Systems
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr