Guest User

Untitled

a guest
Jun 18th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. def conditional_roulette_probs(history):
  2. """
  3.  
  4. Example:
  5. conditional_roulette_probs([1, 3, 1, 5, 1])
  6. > {1: {3: 0.5, 5: 0.5},
  7. 3: {1: 1.0},
  8. 5: {1: 1.0}
  9. }
  10. """
  11. pass
  12.  
  13.  
  14. q5.check()
Add Comment
Please, Sign In to add comment