leetcode-76-最小覆蓋子串

//時間空間佔用都比較大 //感覺寫的比較亂 class Solution { public:     bool helper(vector<int> &freq_s, vector<int> &freq_t, string t) {         for (int i = 0; i<t.length(); i++) {             if (freq_s[t[i]] < freq_t
相關文章
相關標籤/搜索