Easy
回文題目arrow-up-right
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.
Note: For the purpose of this problem, we define empty string as valid palindrome.
Example 1:
Example 2:
Last updated 5 years ago
Input: "A man, a plan, a canal: Panama" Output: true
Input: "race a car" Output: false