longest-palindrome

Posted 笨鸟居士的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了longest-palindrome相关的知识,希望对你有一定的参考价值。

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

public class Solution {
    public int longestPalindrome(String s) {
        char []charr = s.toCharArray();
        Arrays.sort(charr);
        int result = 0;
        for (int i=0; i<charr.length; i++) {
            if (i==charr.length-1) {
                break;
            }
            if (charr[i] == charr[i+1]) {
                result += 2;
                i++;
            }
        }
        if (result < charr.length) {
            result++;
        }
        return result;
    }
}

 

以上是关于longest-palindrome的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode409. Longest Palindrome

微信小程序代码片段

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

片段和活动之间的核心区别是啥?哪些代码可以写成片段?

LeetCode 0409. 最长回文串