791. Custom Sort String
你板大师都好猛
剩我只会水桶了
string customSortString(string order, string s) {
vector<int> cnt(26,0);
for(auto c : s)
{
cnt[c-'a']++;
}
string ans = "";
for(auto c : order)
{
ans += string(cnt[c-'a'], c);
cnt[c-'a'] = 0;
}
for(int i=0; i<26; i++)
{
if(cnt[i] > 0)
{
ans += string(cnt[i], 'a'+i);
}
}
return ans;
}