Skip to content

Commit 534c9c6

Browse files
committed
fix: 줄바꿈 누락
1 parent e9f1cb4 commit 534c9c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

valid-palindrome/jeongwoo903.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ var isPalindrome = function(s) {
1717
const lowerString = parsedString.toLowerCase();
1818
const reverseString = lowerString.split("").reverse().join("");
1919
return reverseString === lowerString;
20-
};
20+
};

0 commit comments

Comments
 (0)