Skip to content

Instantly share code, notes, and snippets.

@marram
Created December 22, 2011 17:30
Show Gist options
  • Save marram/1511113 to your computer and use it in GitHub Desktop.
Save marram/1511113 to your computer and use it in GitHub Desktop.
Pseudo code for querying picks
friends_picks = []
for friend in friends:
for game in games:
pick = get_pick(friend, game)
if pick:
friends_picks.append(pick)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment