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