Skip to content

Instantly share code, notes, and snippets.

@calthoff
Created April 10, 2018 03:28
Show Gist options
  • Select an option

  • Save calthoff/10f553bf783037f9a5ede2110a9f0d6d to your computer and use it in GitHub Desktop.

Select an option

Save calthoff/10f553bf783037f9a5ede2110a9f0d6d to your computer and use it in GitHub Desktop.
def ss(number_list, n):
found = False
for i in number_list:
if i == n:
found = True
break
return found
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment