Given a string, check to see if it is a palindrome.
Sigiloso
1.Reverse the string then do a comparison (kinda overkill) 2.bool isPalindrome(string s) { int n = s.Length; for (int i = 0; i < (n / 2) + 1; ++i) { if (s[i] != s[n - i - 1]) { return false; } } return true; }