-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
58 lines (46 loc) · 1.32 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//Input: s = "A man, a plan, a canal: Panama"
//Output: true
//Explanation: "amanaplanacanalpanama" is a palindrome.
Console.WriteLine(new Solution().IsPalindrome("A man, a plan, a canal: Panama"));
//Input: s = "race a car"
//Output: false
//Explanation: "raceacar" is not a palindrome.
Console.WriteLine(new Solution().IsPalindrome("raceacar"));
//Input: s = " "
//Output: true
//Explanation: s is an empty string "" after removing non-alphanumeric characters.
//Since an empty string reads the same forward and backward, it is a palindrome.
Console.WriteLine(new Solution().IsPalindrome(" "));
public class Solution
{
public bool IsPalindrome(string s)
{
if (s.Length < 2)
return true;
s = s.ToLower();
var l = 0;
var r = s.Length - 1;
while (l < r)
{
while (l < r && !isAlphaNumeric(s[l]))
{
l++;
}
while (r > l && !isAlphaNumeric(s[r]))
{
r--;
}
if (s[l] != s[r])
return false;
l++;
r--;
}
return true;
}
public bool isAlphaNumeric(char s)
{
if ((s >= '0' && s <= '9') || (s >= 'A' && s <= 'Z') || (s >= 'a' && s <= 'z'))
return true;
return false;
}
}