Easy
,Array
,Binary Search
Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.
You must write an algorithm with O(log n)
runtime complexity.
Example 1:
Example 2:
Example 3:
Constraints:
nums.length
<= 104nums[i]
<= 104nums
contains distinct values sorted in ascending order.target
<= 104Yen-Chi ChenMon, Feb 20, 2023
Yen-Chi ChenMon, Feb 20, 2023
Ron ChenWed, Feb 22, 2023
MasrgoatMon, Feb 20, 2023