leetcode word pattern 以及 Isomorphic Strings --- 注意简便写法
题目很简单,https://leetcode.com/problems/word-pattern/但是要写得最简单就不一样了。还可以用map我的code写得有点复杂classSolution(object):
defwordPattern(self,pattern,str):
"""
:typepattern:str
:typestr:str
:rtype:bool
"""
dict1={}