forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_125.java
25 lines (24 loc) · 798 Bytes
/
_125.java
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
package com.fishercoder.solutions;
public class _125 {
public static class Solution1 {
public boolean isPalindrome(String s) {
int left = 0;
int right = s.length() - 1;
char[] chars = s.toCharArray();
while (left < right) {
while (left < right && !Character.isLetterOrDigit(chars[left])) {
left++;
}
while (left < right && !Character.isLetterOrDigit(chars[right])) {
right--;
}
if (Character.toLowerCase(chars[left]) != Character.toLowerCase(chars[right])) {
return false;
}
left++;
right--;
}
return true;
}
}
}