Exercise

Simulation of a single n

With a room of size 50, let us start by finding a solution via simulation.

In this code, n will represent our room size and match will be our counter for the number of times at least one matching birthday occurred in the simulation, which starts at 0 and should increment in each iteration where a match occurs.

Instructions

100 XP
  • Fill in the required parameters of the sample function, to randomly assign birthdays to each individual.
  • Increment the match variable according to the condition it follows.
  • Calculate the estimated probability of at least one match.