28. Implement strStr()

1,968次阅读
没有评论

共计 290 个字符,预计需要花费 1 分钟才能阅读完成。

Implement strStr().

Return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.

Example 1:

Input: haystack = "hello", needle = "ll"
Output: 2

Example 2:

Input: haystack = "aaaaa", needle = "bba"
Output: -1

解法

class Solution:
    def strStr(self, haystack: 'str', needle: 'str') -> 'int':
        if len(needle)<1:
            return 0
        length=len(needle)
        for x in range(len(haystack)-length+1):
            if haystack[x:x+length]==needle:
                return x
        return -1
正文完
请博主喝杯咖啡吧!
post-qrcode
 
admin
版权声明:本站原创文章,由 admin 2019-02-11发表,共计290字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)
验证码