美文网首页
10、实现strStr() leetcode28

10、实现strStr() leetcode28

作者: 九答 | 来源:发表于2020-04-02 11:46 被阅读0次

描述

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

相关文章

网友评论

      本文标题:10、实现strStr() leetcode28

      本文链接:https://www.haomeiwen.com/subject/onztphtx.html