Given a sorted array `nums`, implement `searchRange(nums, target)` returning `[first, last]` indices of `target`, or `[-1, -1]` if absent.
+ 1 hidden test run on Submit.
Two boundary binary searches locate the first and last index in O(log n) time.
Run your code to see results.