Given a string s, return true if a permutation of the string could form a palindrome and false otherwise.
A palindrome is a string that reads the same forward and backward.
Example 1:
Input: s = "code"
Output: falseExample 2:
Input: s = "aab"
Output: trueExample 3:
Input: s = "carerac"
Output: trueConstraints:
1 <= s.length <= 5000s consists of only lowercase English letters.