We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55ebcee commit 5e1472bCopy full SHA for 5e1472b
Numpy/MeanVarandStd.py
@@ -4,6 +4,7 @@
4
Domain : Python
5
Author : Ahmedur Rahman Shovon
6
Created : 15 July 2016
7
+UUpdated : 24 June 2023
8
Problem : https://www.hackerrank.com/challenges/np-mean-var-and-std/problem
9
"""
10
@@ -17,4 +18,4 @@
17
18
np_ar = numpy.array(ar)
19
print(numpy.mean(np_ar, axis=1))
20
print(numpy.var(np_ar, axis=0))
-print(numpy.std(np_ar, axis=None))
21
+print(round(numpy.std(np_ar, axis=None), 11))
0 commit comments