You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Binary search Algorithm
*/
int searchInsert(vector<int>& nums, int target) {
int left = 0;
int right = nums.size()-1; //length is used to extarct the amx size of array