题解
2023-09-01 16:39:31
发布于:广东
2阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main() {
string s;
string t;
cin >> s >> t;
string censored;
for (int i = 0; i < s.size(); i++) {
censored += s[i];
if (censored.size() > t.size() &&
censored.substr(censored.size() - t.size()) == t) {
censored.resize(censored.size() - t.size());
}
}
cout << censored << endl;
}
这里空空如也
有帮助,赞一个