- Difficulty: Easy
- Tags: LeetCode, Easy, Bit Manipulation, Hash Table, String, leetcode-266, O(n), O(1), 🔒
Problem
Given a string s
, return true
if a permutation of the string could form a palindrome and false
otherwise.
Â
Example 1:
Input: s = "code" Output: false
Example 2:
Input: s = "aab" Output: true
Example 3:
Input: s = "carerac" Output: true
Â
Constraints:
1 <= s.length <= 5000
s
consists of only lowercase English letters.