昨晚比赛的时候有往字符出现的次数去想,但就是没有去假设一些量,没有推式子。数学是多么的重要。
#include<iostream>
#include<string>
#include<queue>
#include<algorithm>
#include<set>
#include<stack>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<map>
using namespace std;
typedef long long ll;
const int mod = 1e9 + 7;
const int inf = 0x3f3f3f3f;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0), cout.tie(0);
int t;
cin >> t;
while (t--)
{
int n;
cin >> n;
map<char, int> h;
for (int i = 1;i <= 2 * n;i++)
{
string k;
cin >> k;
for (auto x : k)
{
h[x]++;
}
}
string s;
cin >> s;
for (auto x : s)
{
h[x]++;
}
for (auto y : h)
{
if (y.second % 2)
{
cout << y.first << endl;
}
}
}
}