Practice
Leaderboard
Profile
Login
Logout
Code Practice
Code Practice
//Returns whether the given string is palindrome. //Note: Spaces do not matter. Not case-sensitive. //Examples: // isPalindrome("rar") -> true // isPalindrome("cat") -> false // isPalindrome("Bat tab") -> true //Constraints: // 1 <= str.length <= 1000 function isPalindrome(str) { return false; }
Run Tests
Ran
0
tests