Skip to content

Commit 2acdf7b

Browse files
committed
valid-palindrome solution
1 parent 5c7a0bd commit 2acdf7b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

valid-palindrome/RiaOh.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
* @param {string} s
33
* @return {boolean}
44
*/
5+
// Week 3에 다시 올림
56
var isPalindrome = function (s) {
67
const arr = [...s];
78
let text = "";

0 commit comments

Comments
 (0)