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.

Solution

public class Solution {
    public int longestPalindrome(String s) {
        if(s == null || s.length() == 0) return 0;
        Map<Integer, Integer> map = new HashMap<Integer, Integer>();
        for(int i = 0; i < s.length(); i++) {
            int c = (int)(s.charAt(i));
            if(map.get(c) == null) {
                map.put(c, 1);
            } else {
                map.put(c, map.get(c) + 1);
            }
        }

        int single = 0;
        int res = 0;
        for(Integer cnt: map.values()) {
            if(cnt % 2 == 0) {
                res += cnt;
            } else {
                single = 1;
                res += cnt - 1;
            }
        }
        res += single;
        return res;
    }
}

results matching ""

    No results matching ""