Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. def theAliceBlindRatAlmostAlwaysThree(mymoves, othermoves, totalRounds, currentRound):
  2. #rats always after first 6 rounds, in which only tit for tat
  3. if currentRound < 6:
  4. if len(othermoves) == 0:
  5. return False
  6. if othermoves[-1]:
  7. return True
  8. return True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement