Determine whether a given string is a palindrome. Return true if it reads the same forward and backward; otherwise return false.
s = "racecar"OutputtrueWhyAll mirrored characters match.s = "hello"OutputfalseWhyThe string differs when reversed.`0 <= len(s) <= 10^5``s` contains ASCII charactersUse exact character comparison