Created
April 10, 2018 03:28
-
-
Save calthoff/10f553bf783037f9a5ede2110a9f0d6d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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