Given a string which consists of lowercase or uppercase letters, find the length of the longest palindromes that can be built with those letters.
This is case sensitive, for example "Aa"
is not considered a palindrome here.
Note:
Assume the length of given string will not exceed 1,010.
Example:
Input: "abccccdd"Output: 7
Explanation: One longest palindrome that can be built is "dccaccd", whose length is 7.
Related Topics:
Hash Table
Similar Questions:
// OJ: https://leetcode.com/problems/longest-palindrome/
// Author: github.com/lzl124631x
// Time: O(N)
// Space: O(1) because there are at most 52 unique characters
class Solution {
public:
int longestPalindrome(string s) {
unordered_map<int, int> cnt;
for (char c : s) cnt[c]++;
int ans = 0, odd = 0;
for (auto &p : cnt) {
if (p.second % 2) {
odd = 1;
ans += p.second - 1;
} else ans += p.second;
}
return ans + odd;
}
};