#include <iostream> #include <string> #include <unordered_map> #include <algorithm> using namespace std; bool MatchStr(string s, string t) { bool bRet = false; unordered_map<char,int> sMap; unordered_map<char,int> tMap; for (auto ch : s) { ...