Course · Section 9: Data Structures, Modern Operators and Strings · Lecture 128: Working With Strings - Part 1
Implement `isPalindrome(s)` returning whether `s` reads the same forwards and backwards, ignoring letter case.
+ 1 hidden test run on Submit.
Lowercasing then comparing against the reversed string gives a case-insensitive palindrome check.
Run your code to see results.