找出给出的字符串S中最长的回文子串。假设S的最大长度为1000,并且只存在唯一解。
示例1
输入
"abcba"
输出
"abcba"
加载中...
import java.util.*; public class Solution { /** * * @param s string字符串 * @return string字符串 */ public String longestPalindrome (String s) { // write code here } }
class Solution { public: /** * * @param s string字符串 * @return string字符串 */ string longestPalindrome(string s) { // write code here } };
# # # @param s string字符串 # @return string字符串 # class Solution: def longestPalindrome(self , s ): # write code here
/** * * @param s string字符串 * @return string字符串 */ function longestPalindrome( s ) { // write code here } module.exports = { longestPalindrome : longestPalindrome };
# # # @param s string字符串 # @return string字符串 # class Solution: def longestPalindrome(self , s ): # write code here
package main /** * * @param s string字符串 * @return string字符串 */ func longestPalindrome( s string ) string { // write code here }
"abcba"
"abcba"