Course · Section 9: Data Structures, Modern Operators and Strings · Lecture 128: Working With Strings - Part 1
Implement `isPalindrome(str)` that returns `true` if `str` reads the same forwards and backwards (case-insensitive, ignore non-alphanumeric characters).
+ 2 hidden tests run on Submit.
Comparing the lowercased string to its reverse checks for a palindrome regardless of case.
Run your code to see results.