Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. // Tiebreaker scenario
  2. if (p4_winner_array[0] == p4_winner_array[1]) {
  3. return uninformedVoter([republicans[0], republicans[1]]);
  4. }
  5. if (p4_winner_array[0] == p4_winner_array[2]) {
  6. return uninformedVoter([republicans[0], republicans[2]]);
  7. }
  8. if (p4_winner_array[1] == p4_winner_array[2]) {
  9. return uninformedVoter([republicans[1], republicans[2]]);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement