Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 404 Bytes

File metadata and controls

23 lines (14 loc) · 404 Bytes

Problem 125: Valid Palindrome

Difficulty: Easy

Problem

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

Example 1:
Input: "A man, a plan, a canal: Panama"
Output: true

Example 2:
Input: "race a car"
Output: false