Binary Search (Recursive)

Given a sorted array nums and an integer target, return the index of target using recursive binary search. If not found, return -1.

Difficulty:

Console