2 Star 1 Fork 0

royce li/Leetcode_royce

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
strStr.py 978 Bytes
一键复制 编辑 原始数据 按行查看 历史
Royce Li 提交于 2021-05-10 16:39 . 2020/5/10 First Commit
class Solution:
def strStr(self, haystack: str, needle: str) -> int:
if needle=="":
return 0
i,j=0,0
n1=len(haystack)
n2=len(needle)
while i<len(haystack)-len(needle)+1:
if haystack[i]==needle[j]:
temp=-1
while i<n1 and j<n2 and haystack[i]==needle[j]:
if haystack[i]!=needle[0] and temp!=-1:
temp=i
i+=1
j+=1
if j==n2:
return i-n2
else:
if temp!=-1:
i=temp
else:
i=i-j+1
j=0
else:
i+=1
return -1
'''
执行用时:
44 ms
, 在所有 Python3 提交中击败了
54.75%
的用户
内存消耗:
15 MB
, 在所有 Python3 提交中击败了
5.39%
的用户
'''
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

搜索帮助