Skip to content

Instantly share code, notes, and snippets.

@vividhsv
Created December 21, 2016 20:48
Show Gist options
  • Save vividhsv/4fbf7df5189f113eee047231a22c16f1 to your computer and use it in GitHub Desktop.
Save vividhsv/4fbf7df5189f113eee047231a22c16f1 to your computer and use it in GitHub Desktop.
Linear Search
def linear_search(item, list):
for i in list:
if i == item:
return True
return False
print(linear_search(4, [1, 2, 4, 4, 5]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment