每日LeetCode - 28. 实现 strStr()(C语言和Python 3)

每日LeetCode - 28. 实现 strStr()(C语言和Python 3)

 

C语言

 

 

Python 3

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

 

上一篇:win10相关操作


下一篇:SVN安装下载上传