#include <iostream>
#include <cstring>
#include <cctype>
#include <unordered_map>
using namespace std;
unordered_map<char,int> mp;
int main(){
string a,b;
cin>>a>>b;
int i,j;
for(i=0,j=0;j<b.length();){
char temp=toupper(a[i]);
char cmp=toupper(b[j]);
if(temp!=cmp&&mp[temp]==0){
mp[temp]=1;
cout<<temp;
i++;
}else if(temp!=cmp&&mp[temp]!=0){
i++;
}else{
i++;
j++;
}
}
for(int l=i;l<a.length();l++){
char temp=toupper(a[l]);
if(mp[temp]==0){
cout<<temp;
}
}
return 0;
}
pat a 1084
最新推荐文章于 2021-08-18 20:59:49 发布