Skip to content

Instantly share code, notes, and snippets.

@samaaron
Created February 24, 2009 15:43
Show Gist options
  • Select an option

  • Save samaaron/69625 to your computer and use it in GitHub Desktop.

Select an option

Save samaaron/69625 to your computer and use it in GitHub Desktop.
ideas_data = {
#'label' => [neg_votes, pos_votes]
'A' => [ 1 , 200 ],
'B' => [ 10000 , 1000000],
'C' => [ 0 , 40],
'D' => [ 0 , 10 ],
'E' => [ 1 , 10 ],
'F' => [ 100 , 300],
'G' => [ 1 , 2],
'H' => [ 200 , 210 ],
'I' => [ 201 , 210 ],
'J' => [ 300 , 300],
'K' => [ 5 , 5],
'L' => [ 1 , 1 ],
'M' => [ 0 , 0 ],
'N' => [ 211 , 210 ],
'O' => [ 300 , 100],
'P' => [ 10 , 0 ],
'Q' => [ 100 , 0 ],
}
nerds = ['B', 'A', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q']
phil = ['B', 'F', 'A', 'H', 'J', 'I', 'N', 'C', 'D', 'K', 'G', 'L', 'O', 'E', 'P', 'Q', 'M']
amos = ['B', 'F', 'A', 'C', 'H', 'I', 'N', 'D', 'E', 'G', 'J', 'K', 'O', 'L', 'M', 'P', 'Q']
bas = ['B', 'F', 'A', 'C', 'D', 'H', 'I', 'E', 'G', 'J', 'K', 'L', 'N', 'P', 'Q', 'O', 'M'] #would ignore M if possible
JJ = ['B', 'F', 'A', 'C', 'D', 'H', 'E', 'I', 'G', 'J', 'K', 'L', 'M', 'N', 'P', 'Q', 'O']
ebbum = ['B', 'F', 'A', 'C', 'H', 'D', 'I', 'E', 'G', 'J', 'K', 'L', 'M', 'N', 'P', 'Q', 'O']
jaap = ['B', 'A', 'F', 'C', 'D', 'E', 'H', 'I', 'N', 'G', 'J', 'K', 'L', 'O', 'P', 'Q', 'M']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment