Skip to content

Instantly share code, notes, and snippets.

@Neppord
Last active December 12, 2015 05:29
Show Gist options
  • Save Neppord/4722286 to your computer and use it in GitHub Desktop.
Save Neppord/4722286 to your computer and use it in GitHub Desktop.
fizz buzz
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