Problem 1267. Calculate the probability that at least two people in a group share the same birthday.

Created by Jeremy

Calculate the probability that at least two people in a group share the same birthday. Given an integer input n, return to 0.015 (1.5%) precision the probability of this being the case. Assume that every day is equally probable as a birthday and ignore the leap year.

Example:

Input: 1
Output: 0.00
Input: 366
Output: 1.00

Problem Group

16 solvers submitted 44 solutions (2.75 solutions/solver).