Posted on January 22, 2022 Description Submission class Solution { public: int removePalindromeSub(string s) { string t = s; reverse(t.begin(), t.end()); if(s == t) return 1; return 2; } }; By Bill0412 Easy LeetCode