美文网首页
205. 同构字符串

205. 同构字符串

作者: Andysys | 来源:发表于2019-12-30 22:25 被阅读0次
        public boolean isIsomorphic(String s, String t) {
            char[] ch1 = s.toCharArray();
            char[] ch2 = t.toCharArray();
            for (int i = 0; i < s.length(); i++) {
                if (s.indexOf(ch1[i]) != t.indexOf(ch2[i])) {
                    return false;
                }
            }
            return true;
        }
    

    相关文章

      网友评论

          本文标题:205. 同构字符串

          本文链接:https://www.haomeiwen.com/subject/enbeoctx.html