LoslegenKostenlos loslegen

One round of von Neumann Poker

Let us simulate one round of von Neumann poker, in which each player of two players, A and B, receives a value drawn at random from a uniform distribution.

Here, we will ignore the betting aspect, and just check which player wins.

Diese Übung ist Teil des Kurses

Probability Puzzles in R

Kurs anzeigen

Anleitung zur Übung

  • Generate the values for each player, coming from a Uniform distribution.
  • Fill in the condition to check whether player A has won.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Generate values for both players
A <- 
B <- 

# Check winner
if(___){
  print("Player A wins")
} else {
  print("Player B wins")
}

print(A)
print(B)
Code bearbeiten und ausführen