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