问题如下:
给定两个字符串needle和haystack,返回needle在haystack中第一次出现的索引,如果needle不是haystack的一部分,则返回-1。
示例1:
Input: haystack = "sadbutsad", needle = "sad" Output: 0 Explanation: "sad" occurs at index 0 and 6. The first occurrence is at index 0, so we return 0.
示例2:
Input: haystack = "leetcode", needle = "leeto" Output: -1 Explanation: "leeto" did not occur in "leetcode", so we return -1.
我是这样解决的:
这是第一个简单的问题,实际上很简单。只需使用内置的 index() 函数即可!
这是它的工作原理:
if needle in haystack: return haystack.index(needle) else: return -1
这是完整的解决方案:
class Solution: def strStr(self, haystack: str, needle: str) -> int: return haystack.index(needle) if needle in haystack else -1
以上是Leetcode Day 查找字符串中第一次出现的索引解释的详细内容。更多信息请关注PHP中文网其他相关文章!