Compute the mean and population standard deviation of a list of numbers.
Constraints
Example
>>> array_stats([2, 4, 4, 4, 5, 5, 7, 9]) (5.0, 2.0) >>> array_stats([10, 20, 30]) (20.0, 8.165) >>> array_stats([]) (0.0, 0.0)
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints