Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 1.14 KB

125-valid-palindrome.md

File metadata and controls

48 lines (30 loc) · 1.14 KB

125. Valid Palindrome - 验证回文串

给定一个字符串,验证它是否是回文串,只考虑字母和数字字符,可以忽略字母的大小写。

说明:本题中,我们将空字符串定义为有效的回文串。

示例 1:

输入: "A man, a plan, a canal: Panama"
输出: true

示例 2:

输入: "race a car"
输出: false

题目标签:Two Pointers / String

题目链接:LeetCode / LeetCode中国

题解

Language Runtime Memory
python3 52 ms N/A
import re

class Solution:
    def isPalindrome(self, s):
        """
        :type s: str
        :rtype: bool
        """
        ss = ''.join(re.findall('[a-zA-Z0-9]+', s)).lower()
        return ss == ss[::-1]