FromLeetcodeStatusACDate‣Tags双指针字符串字符串匹配Difficulty中等Linkhttps://leetcode.cn/problems/find-the-index-of-the-first-occurrence-in-a-string/描述给你两个字符串 haystack 和 needle ,请你在 haystack 字符串中找出 needle 字符串的第一个匹配项的下标(下标从 0 开始)。如果 needle 不是 haystack 的一部分,则返回 -1 。示例 1:示例 2:提示:1 <= haystack.length, needle.length <= 104haystack 和 needle 仅由小写英文字符组成思路代码