Leetcode 205. 同構字符串

 AC解:code class Solution { public: bool isIsomorphic(string s, string t) { if (s.size() == 0) return true; int Len = s.size(); vector<vector<int>> S,T; for (int i = 0; i < 255; i ++ ) {
相關文章
相關標籤/搜索