LeetCode 第五題:最長迴文子串

LeetCode 第五題:最長迴文子串 題目:給定一個字符串 s,找到 s 中最長的迴文子串。你能夠假設 s 的最大長度爲 1000。 解法一:暴力破解(超出時間限制) class Solution { public String longestPalindrome(String s) { String max = new String(); String
相關文章
相關標籤/搜索