/* HW双指针3 最小覆盖子串 */ class Solution { public: unordered_map<char,int>hash; bool check() { for(auto it=hash.begin();it!=hash.end();it++){ if(it->second<=0)return false; } return true; } string minWindow(string S, string T) { int lens=S.length(),lent=T.length(); for(int i=0;i<lent;i++){ ...