码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode28. 实现 strStr()

时间:2020-03-15 11:23:09      阅读:40      评论:0      收藏:0      [点我收藏+]

标签:https   targe   python3   ret   alt   target   leetcode   方法   print   

技术图片

python3 find()方法

def strStr(haystack: str, needle: str) -> int:
    return haystack.find(needle)
print(strStr("hello","ll"))
print(strStr("hello","aab"))
print(strStr("hello",""))

leetcode28. 实现 strStr()

标签:https   targe   python3   ret   alt   target   leetcode   方法   print   

原文地址:https://www.cnblogs.com/wrnan/p/12496524.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!