Permutation Palindrome
Start Timer
0:00:00
Given a string str
, write a function perm_palindrome
to determine whether there exists a permutation of str
that is a palindrome.
Example:
Input:
str = 'cacerra'
def perm_palindrome(str) -> True
“cacerra” returns True since it can be rearranged to form “racecar” which is a palindrome.
Recommended questions for you
Personalized based on your user activity, skill level, and preferences.
.
.
.
.
.
.
.
.
.
Comments