forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.js
50 lines (48 loc) · 1.11 KB
/
Solution.js
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
const isPalindrome1 = function (s) {
let arr1 = [],
arr2 = [];
for (let i = 0; i < s.length; i++) {
if (s[i] >= "A" && s[i] <= "Z") {
arr1.push(s[i].toLowerCase());
}
if ((s[i] >= "0" && s[i] <= "9") || (s[i] >= "a" && s[i] <= "z")) {
arr1.push(s[i]);
}
}
arr2 = [...arr1];
arr2.reverse();
return arr1.join("") === arr2.join("");
};
const isPalindrome = function (s) {
function isNumOrAl(a) {
if (
(a >= "A" && a <= "Z") ||
(a >= "0" && a <= "9") ||
(a >= "a" && a <= "z")
) {
return true;
} else {
return false;
}
}
if (s.length === 0) {
return true;
}
let i = 0,
j = s.length - 1;
while (i < j) {
while (i < j && !isNumOrAl(s[i])) {
i++;
}
while (i < j && !isNumOrAl(s[j])) {
j--;
}
if (s[i].toLowerCase() !== s[j].toLowerCase()) {
return false;
} else {
i++;
j--;
}
}
return true;
};