2 Star 1 Fork 0

royce li/Leetcode_royce

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
checkInclusion.py 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
Royce Li 提交于 2021-05-10 16:39 . 2020/5/10 First Commit
class Solution:
def checkInclusion(self, s1: str, s2: str) -> bool:
mapper1={}
for i in s1:
if i in mapper1:
mapper1[i]+=1
else:
mapper1[i]=1
len1=len(s1)
mapper2={}
count=0
left=right=0
def equal(m1,m2):
for i in m1.keys():
if m1[i]!=m2[i]:
return False
return True
while right<len(s2):
if s2[right] not in mapper1:
mapper2={}
right+=1
left=right
else:
if s2[right] in mapper2:
mapper2[s2[right]]+=1
else:
mapper2[s2[right]]=1
if mapper2[s2[right]]>mapper1[s2[right]]:
while mapper2[s2[right]]>mapper1[s2[right]]:
mapper2[s2[left]]-=1
left+=1
right+=1
if right-left==len1 and equal(mapper1,mapper2):
return True
return False
'''
执行用时:
68 ms
, 在所有 Python3 提交中击败了
92.13%
的用户
内存消耗:
15 MB
, 在所有 Python3 提交中击败了
24.30%
的用户
'''
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

搜索帮助