摘要:
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 阅读全文
posted @ 2021-08-23 14:52
青衣怒马
阅读(29)
评论(0)
推荐(0)
2021年8月23日