1/8 Test Cases Passed
You need to earn 2 or 3 stars in order to submit.
1/8 Test Cases Passed
You need atleast 2 stars to grade your answer.
Test Cases (0/8)
-
lib.multiply([1,2,3], 3) to return [3, 6, 9]
-
lib.multiply([2,10,5,3], 7) to return [14, 70, 35, 21]
-
lib.filterRange([1,3,5,7,9], 4,6) to return [5]
-
lib.filterRange([1,3,5,7,9], 2,8) to return [3, 5, 7]
-
len(lib.shuffle([1,3,5,7,9,11], 2)) to return 6
-
lib.shuffle([1,3,5,7,9,11], 0) to return [1, 3, 5, 7, 9, 11]
-
lib.randomBetween(100,200,7)>=100 and lib.randomBetween(100,200,7)<=200 to return True
-
lib.randomBetween(100,200,7)%7 to return 0