LC 验证回文串

Posted yangbocsu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LC 验证回文串相关的知识,希望对你有一定的参考价值。

LC 验证回文串


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

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


【代码1.0】

class Solution {
    public boolean isPalindrome(String s) 
    {
        String s1 = s.toLowerCase();
        s1 = s1.replaceAll("[^0-9a-z]","");
 
        for (int i = 0,j = s1.length() - 1; i <= j; i++,j--)
        {
            if (s1.charAt(i) != s1.charAt(j))
            {
                return false;
            }

        }
        return true;
    }
}

以上是关于LC 验证回文串的主要内容,如果未能解决你的问题,请参考以下文章

力扣(LeetCode)验证回文串 个人题解(C++)

LeetCode第125题—验证回文串—Python实现

leetcode-----125. 验证回文串

Leetcode 125.验证回文串 By Python

Leetcode125. 验证回文串(JAVA双指针)

LeetCode:验证回文串125