palindrom python rekursiv
def ispalindrome(word):
return word == word[::-1]
palindrom python rekursiv
def ispalindrome(word):
return word == word[::-1]
palindrom python rekursiv
def ispalindrome(word):
if len(word) < 2: return True
if word[0] != word[-1]: return False
return ispalindrome(word[1:-1])
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us