Standardize a list of numbers into z-scores using the population standard deviation.
Constraints
Example
>>> zscore_normalize([1, 2, 3]) [-1.2, 0.0, 1.2] >>> zscore_normalize([10]) [0.0]
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints