Skip to content

Instantly share code, notes, and snippets.

@MasazI
Created December 3, 2015 15:08
Show Gist options
  • Save MasazI/6251cc138ab64c0b0b64 to your computer and use it in GitHub Desktop.
Save MasazI/6251cc138ab64c0b0b64 to your computer and use it in GitHub Desktop.
hi performance python cp1 search
def search_1st(haystack, needle):
for item in haystack:
if item == needle:
return True
return False
def search_2nd(haystack, needle):
val = False
for item in haystack:
if item == needle:
val = True
return val
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment