Interview Guides

Given a string s, write a function that returns true if the string is a palindrome and false otherwise. A palindrome reads the same forward and backward. Assume comparison is case-sensitive and includes all characters in the string.
0 <= len(s) <= 10^5s contains printable characters