Challenge: is a string a palindrome?
We'll cover the following...
In this challenge, you'll make it so the isPalindrome()
function returns true if the provided string is a palindrome, and false otherwise. Here are the cases that we need to handle.
Base case #1
Start by implementing the first base case: if the ...