Skip to content

Commit a13d862

Browse files
committed
added function
1 parent 23dee81 commit a13d862

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Valid Palindrome II/code.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ var validPalindrome = function(s) {
77
j = s.length - 1;
88

99
let errors = 1;
10-
1110
while(i < j) {
1211

1312
if(s[i] === s[j]) {

0 commit comments

Comments
 (0)