摘要: class Solution { public: bool checkInclusion(string s1, string s2) { unordered_map<char,int> need,window; for(char i: s1) { need[i]++; } int left=0; i 阅读全文