Problem Description
Given a string s which consists of lowercase or uppercase letters, return the length of the longest palindrome that can be built with those letters. Letters are case sensitive, for example, "Aa" is not considered a palindrome.
Key Insights
- A palindrome reads the same forwards and backwards.
- To form a palindrome, characters must be paired, with at most one character allowed to be unpaired (which can sit in the middle).
- Count the occurrences of each character in the string.
- The maximum length of the palindrome can be determined by summing the lengths of pairs of characters, and adding one if there's at least one unpaired character.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the string s, as we need to iterate through the string to count character frequencies.
Space Complexity: O(1), since the maximum number of unique characters is limited (52 for English letters).
Solution
To solve the problem, we can use a hash table (or a simple array) to count the occurrences of each character in the string. After counting, we iterate through the counts to calculate the total length of the palindrome. For each character count, we can add the largest even number possible (which forms pairs) to the total length, and if there is at least one odd count, we can add one more to account for the central character in the palindrome.