Problem Statement
Palindrome Check Given a string s , determine if it is a palindrome. A palindrome reads the same forward and backward. Print true if it is a palindrome, false otherwise. Example Input: racecar\nOutput: true Input: hello\nOutput: false