此篇文章為我的解題紀錄,程式碼或許並不是很完善

Leetcode - 28. Implement strStr()

解題思路

直接使用find function將在字串中尋找哈哈

我滴程式碼

1
2
3
class Solution:
def strStr(self, haystack: str, needle: str) -> int:
return haystack.find(needle)