Skip to content

Latest commit

 

History

History
executable file
·
13 lines (7 loc) · 263 Bytes

File metadata and controls

executable file
·
13 lines (7 loc) · 263 Bytes

题目

Implement strStr().

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

解题思路

依次对比查找

总结