代码拉取完成,页面将自动刷新
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%
的用户
'''
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。