Class Solution
java.lang.Object
g0101_0200.s0125_valid_palindrome.Solution
125 - Valid Palindrome.<p>Easy</p>
<p>A phrase is a <strong>palindrome</strong> if, after converting all uppercase letters into lowercase letters and removing all non-alphanumeric characters, it reads the same forward and backward. Alphanumeric characters include letters and numbers.</p>
<p>Given a string <code>s</code>, return <code>true</code> <em>if it is a <strong>palindrome</strong> , or</em> <code>false</code> <em>otherwise</em>.</p>
<p><strong>Example 1:</strong></p>
<p><strong>Input:</strong> s = “A man, a plan, a canal: Panama”</p>
<p><strong>Output:</strong> true</p>
<p><strong>Explanation:</strong> “amanaplanacanalpanama” is a palindrome.</p>
<p><strong>Example 2:</strong></p>
<p><strong>Input:</strong> s = “race a car”</p>
<p><strong>Output:</strong> false</p>
<p><strong>Explanation:</strong> “raceacar” is not a palindrome.</p>
<p><strong>Example 3:</strong></p>
<p><strong>Input:</strong> s = " "</p>
<p><strong>Output:</strong> true</p>
<p><strong>Explanation:</strong> s is an empty string "" after removing non-alphanumeric characters. Since an empty string reads the same forward and backward, it is a palindrome.</p>
<p><strong>Constraints:</strong></p>
<ul>
<li><code>1 <= s.length <= 2 * 10<sup>5</sup></code></li>
<li><code>s</code> consists only of printable ASCII characters.</li>
</ul>
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Solution
public Solution()
-
-
Method Details
-
isPalindrome
-