查找表_leetcode205

Posted AceKo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查找表_leetcode205相关的知识,希望对你有一定的参考价值。


# 解题思路:字典建立隐射关系,一一对应 20190302 找工作期间


class Solution(object):
def isIsomorphic(self, s, t):
"""
:type s: str
:type t: str
:rtype: bool
"""


# 使用字典,pattern当key,str当value,形成配对
dic = {}

if len(s) != len(t) or len(set(s)) != len(set(t)):
return False

for i, val in enumerate(s):
if val not in dic:
dic[val] = t[i]
elif dic[val] != t[i]:
return False
return True

以上是关于查找表_leetcode205的主要内容,如果未能解决你的问题,请参考以下文章

查找表_leetcode149

查找表, 242,202,290,205,451

查找表_leetcode220

查找表_leetcode219

查找表_leetcode202

查找表_leetcode49