LeetCode 266. Palindrome Permutation
Question
Given a string s
, return true
if a permutation of the string could form a palindrome.
Example 1:
1 | Input: s = "code" |
Example 2:
1 | Input: s = "aab" |
Example 3:
1 | Input: s = "carerac" |
Constraints:
1 <= s.length <= 5000
s
consists of only lowercase English letters.
Source: https://leetcode.com/problems/palindrome-permutation/
Solution
1 | public boolean canPermutePalindrome(String s) { |
LeetCode 266. Palindrome Permutation
http://yenotes.org/2022/03/06/LeetCode-266-Palindrome-Permutation/