LeetCode--找出字符串中第一个匹配项的下标

LeetCode--找出字符串中第一个匹配项的下标_第1张图片
这个比较取巧 通过python内置方法判断即可,可以使用下标进行匹配符合的字符串,这样内存占用和时间会减少一些

class Solution:
    def strStr(self, haystack: str, needle: str) -> int:
        ret = haystack.find(needle)
        if ret == -1:
            return -1
        return ret

你可能感兴趣的:(LeetCode,leetcode,算法,职场和发展)