1/3 Test Cases Passed
You need to earn 2 or 3 stars in order to submit.
1/3 Test Cases Passed
You need atleast 2 stars to grade your answer.
Test Cases (0/3)
-
insertionSort([5,3,1,2]) to return [1,2,3,5]
-
insertionSort([5,3,1,2,9,-5]) to return [-5,1,2,3,5,9]
-
insertionSort([5,3,1,2,9,-5,10,13,0]) to return [-5,0,1,2,3,5,9,10,13]