Skip to content

Instantly share code, notes, and snippets.

@mumunuu
Created January 30, 2021 01:39
Show Gist options
  • Save mumunuu/86e8cfa4a57b1363aa3fc2be0bebb1dc to your computer and use it in GitHub Desktop.
Save mumunuu/86e8cfa4a57b1363aa3fc2be0bebb1dc to your computer and use it in GitHub Desktop.
algorithm(leetcode) Implement strStr()
func strStr(haystack string, needle string) int {
return strings.Index(haystack, needle)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment