Skip to content

Instantly share code, notes, and snippets.

@uroybd
Last active June 22, 2016 09:21
Show Gist options
  • Save uroybd/274bbe4bfaa5eb862c534427e47f806f to your computer and use it in GitHub Desktop.
Save uroybd/274bbe4bfaa5eb862c534427e47f806f to your computer and use it in GitHub Desktop.
Simplest linear search in python
def LinearSearch(item, array):
return True if item in array else False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment