每日一题之 LeetCode实现strstr()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了每日一题之 LeetCode实现strstr()相关的知识,希望对你有一定的参考价值。

自己写的一个一个字符匹配的while循环是什么辣鸡玩意,根本就过不了一些特殊测试集,哎,看官解吧。
class Solution:
def strStr(self, haystack, needle):
"""
:type haystack: str
:type needle: str
:rtype: int
"""
if not needle:
return 0

    elif not needle in haystack:
        return -1

    else:
        for i in range(len(haystack)):
            if haystack[i:i+len(needle)] == needle:
                return i

#方法2
return haystack.find(needle)

以上是关于每日一题之 LeetCode实现strstr()的主要内容,如果未能解决你的问题,请参考以下文章

leetcode 每日一题 28. 实现 strStr()

每日一题之LeetCode35搜索插入位置

每日一题之LeetCode 171excel表列序号

每日一题篇 — leetcode38号题之外观数列

每日一题之LeetCode移除元素 删除有序数组重复元素

每日一题之LeetCode237删除链表中的节点876链表的中间节点