码迷,mamicode.com
首页 > 其他好文 > 详细

longest-palindrome

时间:2016-10-03 23:27:49      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

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

标签:

原文地址:http://www.cnblogs.com/charlesblc/p/5929656.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!