Palindrome Checker Write a function that checks if a given string is a palindrome. A palindrome is a word that reads the same backward as forward. Example: Input: "racecar" Output: true Input: "hello" Output: false Problem added by SaadQasim19 Solution Click here to see the solution