题目描述
拿个哈希表存一下就完了
C++ 代码
#include <iostream>
#include <unordered_map>
using namespace std;
int main()
{
string s1, s2;
unordered_map<char, bool> m;
getline(cin, s1), getline(cin, s2);
for (char i : s2) m[i] = true;
for (char i : s1) if (!m[i]) cout << i;
}