Palindrome Permutation

January 07, 2023

Palindrome Permutation: Given a string, write a function to check if it is a permutation of a palindrome. A palindrome is a word or phrase that is the same forwards and backwards. A permutation is a rearrangement of letters.The palindrome does not need to be limited to just dictionary words. You can ignore casing and non-letter characters.
from Cracking the Coding Interview



  • Python codes





Categories: Perl Code, Python Code, Algorithm

Original post: https://cheonkamjeong.blogspot.com/2023/01/algorithm-python-code-perl-code.html