# README
267. Palindrome Permutation II (Medium)
Given a string s
, return all the palindromic permutations (without duplicates) of it. Return an empty list if no palindromic permutation could be form.
Example 1:
Input:"aabb"
Output:["abba", "baab"]
Example 2:
Input:"abc"
Output:[]
Related Topics
[Hash Table] [String] [Backtracking]
Similar Questions
- Next Permutation (Medium)
- Permutations II (Medium)
- Palindrome Permutation (Easy)