Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
I'm almost siting all night, trying to solve this task. If you are so smart find error in my solution! Why it doesn't pass random test?
function permuteAPalindrome (input) {
let arr = input.split('');
const uniqueArr = [];
for (let i = 0; i < arr.length; i++) {
if (arr.indexOf(arr[i]) === arr.lastIndexOf(arr[i])) {
uniqueArr.push(arr[i]);
}
}
if( (uniqueArr.length < 1) || (uniqueArr.length === 1) ) return true;
else if (uniqueArr.length > 1) return false;
}