0266. Palindrome Permutation
https://leetcode.com/problems/palindrome-permutation
Description
Given a string s
, return true
if a permutation of the string could form a palindrome.
Example 1:
Example 2:
Example 3:
Constraints:
1 <= s.length <= 5000
s
consists of only lowercase English letters.
ac
Last updated