Leetcode 35 Search Insert Position Solution in java | Hindi Coding Community

0

 


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:

Input: nums = [1,3,5,6], target = 5

Output: 2


Example 2:

Input: nums = [1,3,5,6], target = 2

Output: 1




class Solution {
public int searchInsert(int[] nums, int target) {
int l = 0, r = nums.length - 1;
while (l < r) {
int m = (l + r) / 2;
if (nums[m] >= target) r = m;
else l = m + 1;
}
return nums[l] >= target ? l : l + 1;
}
}


Post a Comment

0Comments
Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Learn More
Accept !