/// https://leetcode.com/problems/valid-palindrome/ class Solution { public: bool isPalindrome(string A) { int s=0; int n = A.size(); int e = n-1; while(s<=e){ while(s