LeetCode - 409. Longest Palindrom(HashTable, String, Greedy)*

YAMAMAMO·2022년 10월 31일
0

LeetCode

목록 보기
75/100

문제

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 here.

https://leetcode.com/problems/longest-palindrome/

Example 1:

Input: s = "abccccdd"
Output: 7
Explanation: One longest palindrome that can be built is "dccaccd", whose length is 7.

Example 2:

Input: s = "a"
Output: 1
Explanation: The longest palindrome that can be built is "a", whose length is 1.

풀이

class Solution {
    public int longestPalindrome(String s) {
        if(s.length()==1) return 1;
        HashSet<Character> set = new HashSet<>();
        int res = 0;
        for(char c : s.toCharArray()){
            if(set.contains(c)) {
                set.remove(c);
                res ++;
            }else{
                set.add(c);
            }
        }
        
        return (set.isEmpty())?res*2:res*2+1;
    }
}
profile
안드로이드 개발자

0개의 댓글