Interview Question
Share Lesson

Group Permutations of Palindromes

Write a function groupPermutationsOfPalindromes that takes an array of strings as the input and returns an array of arrays where the sub-arrays in the result are all of the same .

For a string to be included in the output, it must be the permutation of a palindrome. That means if you rearranged the characters of the string, it could form a palindrome.

We also want to group strings that are permutations of each other. That means all strings in a sub-array could be rearranged to form any other string in the group (or the same palindrome).

The result array and sub-arrays can be in any order.

The input strings will all be lowercase alphanumeric characters.

 

Breakdown

Loading...
Follow teacher
Share:

Table of Contents

Validate My Answer

  1. Think of this question in two steps. 1) How will you check if a string is a permutation of a palindrome? 2) How will you group strings that are permutations of each other?

  2. The time/space complexity for this question is difficult. Focus on writing good code and optimize later if needed.

  3. An optimized and readable solution will likely contain multiple hash tables.

  4. You can use the number of individual characters in a string to determine if it is a permutation of a palindrome.

  5. You can compare sorted strings to determine if 2 strings are permutations of each other.

Loading...
Follow teacher
Share:

Table of Contents

Test Results

Run your code and see results here...

/**
 * @param {List[str]} strings
 * @return {List[List[str]]}
 */
function groupPermutationsOfPalindromes(strings) {
  // Your solution here
};
// Upgrade for full course access
// Upgrade for full course access

Group Permutations of Palindromes

Write a function groupPermutationsOfPalindromes that takes an array of strings as the input and returns an array of arrays where the sub-arrays in the result are all of the same .

For a string to be included in the output, it must be the permutation of a palindrome. That means if you rearranged the characters of the string, it could form a palindrome.

We also want to group strings that are permutations of each other. That means all strings in a sub-array could be rearranged to form any other string in the group (or the same palindrome).

The result array and sub-arrays can be in any order.

The input strings will all be lowercase alphanumeric characters.

 
/**
 * @param {List[str]} strings
 * @return {List[List[str]]}
 */
function groupPermutationsOfPalindromes(strings) {
  // Your solution here
};
// Upgrade for full course access
// Upgrade for full course access