Skip to content

Latest commit

 

History

History
 
 

0028.implement-strstr

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

题目

Implement strStr().

Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.

解题思路

依次对比查找

总结