get_shared_birthdays <- function(n = 50){
bday_data <- tibble(person = 1:n,
bday = sample(1:365,
size = n,
replace = TRUE)
)
}
