描述
image.png这是很简单的一道题,直接遍历 比较haystack[i:i+len(needle)]就行
class Solution:
def strStr(self, haystack: str, needle: str) -> int:
for i in range(len(haystack) - len(needle) + 1):
if haystack[i:i+len(needle)]==needle:
return i
return -1
网友评论