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