Skip to content

Commit 43295cd

Browse files
committed
Time: 0 ms (100.00%), Space: 43.4 MB (59.39%) - LeetHub
1 parent fba4e35 commit 43295cd

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
class Solution {
2+
public int searchInsert(int[] nums, int target) {
3+
int right = nums.length-1;
4+
int left = 0;
5+
6+
while(left<=right){
7+
int mid = left + (right - left)/2;
8+
if(nums[mid] ==target)
9+
return mid;
10+
else if(nums[right]<target)
11+
return right+1;
12+
else if(nums[left]>target)
13+
return left;
14+
15+
if(nums[mid]<target)
16+
left = mid +1;
17+
else
18+
right = mid -1;
19+
}
20+
21+
return 0;
22+
}
23+
}

0 commit comments

Comments
 (0)