We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2aab2b commit c81e260Copy full SHA for c81e260
javascript/0680-valid-palindrome-ii.js
@@ -0,0 +1,34 @@
1
+/**
2
+ * @param {string} s
3
+ * @return {boolean}
4
+ */
5
+var validPalindrome = function (s) {
6
+ let l = 0;
7
+ let r = s.length - 1;
8
+
9
+ while (l < r) {
10
+ console.log(l, r);
11
+ if (s[l] !== s[r]) {
12
+ const skipL = s.slice(l + 1, r + 1);
13
+ const skipR = s.slice(l, r);
14
+ return isPalindrome(skipL) || isPalindrome(skipR);
15
+ }
16
+ l++;
17
+ r--;
18
19
+ return true;
20
+};
21
22
+const isPalindrome = (s) => {
23
24
25
26
27
28
+ return false;
29
30
31
32
33
34
0 commit comments