LeetCode 1332. Remove Palindromic Subsequences Posted on 2021-03-08 Edited on 2021-03-11 In LeetCode Notes 题目原题在此 解析根据题意有: str只包含'a'和'b'; 要remove的是Subsequences而非substring; 所以str为空是0次, 是回文则1次, 否则就是2次.(第一次移除所有a第二次移除所有b) 代码c++12345678class Solution {public: int removePalindromeSub(string s) { if(s.empty()) return 0; if(s == string(s.rbegin(), s.rend())) return 1; return 2; }};