题目
给你两个字符串 haystack 和 needle ,请你在 haystack 字符串中找出 needle 字符串的第一个匹配项的下标(下标从 0 开始)。如果 needle 不是 haystack 的一部分,则返回 -1 。文章来源地址https://www.toymoban.com/news/detail-712518.html
代码
class Solution:
def strStr(self, haystack: str, needle: str) -> int:
if not haystack or not needle:
return 0
for i, ss in enumerate(haystack):
if i > len(haystack) - len(needle):
return -1
elif ss == needle[:1] and haystack[i:len(needle) + i] == needle:
return i
return -1
文章来源:https://www.toymoban.com/news/detail-712518.html
到了这里,关于python LeetCode 刷题记录 28的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!