Last active
August 29, 2015 14:26
-
-
Save silent1mezzo/0020d1d26b5a0f98cea6 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
# Wife's Algorithm | |
things = get_things_to_clean() | |
for thing in things: | |
clean(thing) | |
# My Alogrithm | |
while True: | |
try: | |
clean_something() | |
except NothingToCleanException: | |
break |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment