You are viewing a single comment's thread. Return to all comments →
#python import math def cdf(m, std, x): return 0.5 * (1 + math.erf((x-m)/(std*2**.5))) n, m0, std0, x=49, 205, 15, 9800 m=n*m0 std=math.sqrt(n)*std0 print(round(cdf(m, std, x), 4))
Seems like cookies are disabled on this browser, please enable them to open this website
An unexpected error occurred. Please try reloading the page. If problem persists, please contact support@hackerrank.com
Day 6: The Central Limit Theorem I
You are viewing a single comment's thread. Return to all comments →