leetcode-242-有效的字母異位詞

class Solution { public:     bool isAnagram(string s, string t) {         if (s.length() != t.length()) return false;         int N = s.length();         map<char, int> freq_t, freq_s;         for(int
相關文章
相關標籤/搜索