Given a list of integers, replace every number with the mean of all numbers.
flatten_the_curve([1, 2, 3, 4, 5]) ➞ [3, 3, 3, 3, 3] flatten_the_curve([0, 0, 0, 2, 7, 3]) ➞ [2, 2, 2, 2, 2, 2] flatten_the_curve([4]) ➞ [4] flatten_the_curve([]) ➞ []