#
题目描述 Given a string s, find the longest palindromic substring in s.You may assume that the maximum l
python判断字符串是否为回文的方法:1、回文字符串:一个字符串,不论是从左往右,还是从右往左,字符的顺序都是一样的(如abba,abcba等)。2、如何判断:判断回文字符串比较简单,即用两个变量l
# -*- coding: utf-8 -*- # @Time : 2019-10-11 10:56 # @Author : Jayce Wong # @ProjectNa