给定一个字符串,编写一个函数判定其是否为某个回文串的排列之一。
回文串是指正反两个方向都一样的单词或短语。排列是指字母的重新排列。
回文串不一定是字典当中的单词。
示例1:
输入:"tactcoa"
输出:true(排列有"tacocat"、"atcocta",等等)
var canPermutePalindrome = function (s) {
let hash = {};
for (let i = 0; i < s.length; i++) {
if (hash[s[i]]) {
hash[s[i]]++;
} else {
hash[s[i]] = 1
}
}
let count=0;
for(const prop in hash){
if(hash[prop]%2!==0){
count++;
}
}
if(count>1){
return false;
}
return true;
};