Last active
December 12, 2015 05:29
-
-
Save Neppord/4722286 to your computer and use it in GitHub Desktop.
fizz buzz
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 check(number): | |
pass | |
def run_tests(): | |
assert check(1) == 1, "one is not devicible with 3 or 5 so leave it alone" | |
if __name__ == "__main__": | |
run_tests() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment