Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 113 Bytes

implement-strstr.md

File metadata and controls

8 lines (7 loc) · 113 Bytes

Code

func strStr(haystack string, needle string) int {
	return strings.Index(haystack, needle)
}