Python:实现最长回文子串算法 class Solution(object): def isPalindrome(self, s, start, end): while start < end:</