2 Star 1 Fork 0

royce li/Leetcode_royce

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
wordPattern.py 1.33 KB
一键复制 编辑 原始数据 按行查看 历史
Royce Li 提交于 2021-05-10 16:39 . 2020/5/10 First Commit
# class Solution:
# def wordPattern(self, pattern: str, s: str) -> bool:
# words=s.split(" ")
# mapper={}
# if len(words) != len(pattern):
# return False
# for i,j in zip(pattern,words):
# try:
# if mapper[i]!=j:
# return False
# except KeyError:
# if j in mapper.values():
# return False
# mapper[i]=j
# return True
'''
执行用时:
36 ms
, 在所有 Python3 提交中击败了
79.88%
的用户
内存消耗:
14.7 MB
, 在所有 Python3 提交中击败了
5.37%
的用户
'''
class Solution:
def wordPattern(self, pattern: str, s: str) -> bool:
words=s.split(" ")
mapper={}
rmapper={}
if len(words) != len(pattern):
return False
for i,j in zip(pattern,words):
try:
if mapper[i]!=j:
print(1)
return False
except KeyError:
try:
temp=rmapper[j]==i
return False
except KeyError:
mapper[i]=j
rmapper[j]=i
return True
s=Solution()
print(s.wordPattern('abba',
"dog cat cat dog"))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/royce-li/leetcode_royce.git
git@gitee.com:royce-li/leetcode_royce.git
royce-li
leetcode_royce
Leetcode_royce
master

搜索帮助