""" 給你兩個字符串 haystack 和 needle , 請你在 haystack 字符串中找出 needle 字符串出現的第一個位置(下標從 0 開始)。如果不存在,則返回 -1 。 """
class Solution:
def strStr(self, haystack: str, needle: str) -> int:
if haystack==needle=='':
return 0
length = len(needle)
for i in range(len(haystack)):
if haystack[i:i+length] == needle:
return i
return -1
haystack = ""
needle = ""
S = Solution()
result = S.strStr(haystack,needle)
print(result)