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 ++ ) {
相关文章
相关标签/搜索