Skip to content

Commit

Permalink
코드 정돈
Browse files Browse the repository at this point in the history
  • Loading branch information
suhwan2004 committed Dec 15, 2024
1 parent 612a577 commit 29e4c4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions suhwan2004/Valid Palindrome.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ var isPalindrome = function (s) {

if (sChar !== eChar) {
return false;
} else {
start++;
end--;
}

start++;
end--;
}

return true;
Expand Down

0 comments on commit 29e4c4b

Please sign in to comment.