1/11 Test Cases Passed
You need to earn 2 or 3 stars in order to submit.
1/11 Test Cases Passed
You need atleast 2 stars to grade your answer.
Test Cases (0/11)
-
ul.add([1,2], [2,3,4]) to return 12
-
ul.add(10,23) to return 33
-
ul.multiply([1,2,3], [1,5,10]) to return [1, 10, 30]
-
ul.multiply(2,5) to return 10
-
ul.multiply([1,2], [1,5,10]) to return False
-
ul.analyze([1,2,5])['max'] to return 5
-
ul.analyze([1,2,5])['min'] to return 1
-
ul.analyze([1,2,5])['count'] to return 3
-
ul.analyze([1,2,5])['sum'] to return 8
-
ul.analyze([-1,-2,-5])['max'] to return -1
-
ul.analyze([-1,-2,-5])['min'] to return -5