leetcode题解十八

Posted hhh江月

tags:

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

leetcode题解十八

题目叙述

实现 strStr() 函数。

给你两个字符串 haystack 和 needle ,请你在 haystack 字符串中找出 needle 字符串出现的第一个位置(下标从 0 开始)。如果不存在,则返回 -1 。

说明:

当 needle 是空字符串时,我们应当返回什么值呢?这是一个在面试中很好的问题。

对于本题而言,当 needle 是空字符串时我们应当返回 0 。这与 C 语言的 strstr() 以及 Java 的 indexOf() 定义相符。

题目解答

class Solution:
    def strStr(self, haystack: str, needle: str) -> int:
        if needle in haystack:
            return haystack.index(needle)
        else:
            return -1


以上是关于leetcode题解十八的主要内容,如果未能解决你的问题,请参考以下文章

leetcode刷题MySQL题解十八

leetcode题解十八

leetcode 474. 一和零

leetcode424 替换后的最长重复字符 java题解

LeetCode题解-----Median of Two Sorted Arrays

JS Leetcode 155. 最小栈 题解分析