Longest Palindrome

来源:互联网 发布:seo具体怎么做 编辑:程序博客网 时间:2024/04/27 18:12

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:7Explanation:One longest palindrome that can be built is "dccaccd", whose length is 7.
class Solution(object):    def longestPalindrome(self, s):        """        :type s: str        :rtype: int        """        #odd = sum(v & 1 for v in collections.Counter(s).values())        #return len(s) - odd + bool(odd)                #use = sum(v & ~1 for v in collections.Counter(s).values())        #return use + (use < len(s))                counts = collections.Counter(s).values()        return sum(v & ~1 for v in counts) + any(v & 1 for v in counts)                
                                             
0 0