Skip to content

Commit fe9c706

Browse files
authored
Update 0034-find-first-and-last-position-of-element-in-sorted-array.js
Using the bitwise operator and removing the inner function.
1 parent b44ad16 commit fe9c706

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

javascript/0034-find-first-and-last-position-of-element-in-sorted-array.js

+8-9
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,20 @@ var searchRange = function(nums, target) {
1010

1111
const result = [];
1212

13-
result.push(binarySearch(true));
14-
result.push(binarySearch(false));
13+
result.push(binarySearch(true, nums, target));
14+
result.push(binarySearch(false, nums, target));
1515

16-
function binarySearch(isLeftBias) {
16+
return result;
17+
};
18+
19+
var binarySearch = (isLeftBias, nums, target) => {
1720
let left = 0;
1821
let right = nums.length - 1;
1922
let index = -1;
2023

2124
while(left <= right) {
2225

23-
const mid = Math.floor((left+right)/2);
26+
const mid = (left + right) >> 1;
2427

2528
if(target > nums[mid]) {
2629
left = mid+1;
@@ -40,9 +43,5 @@ var searchRange = function(nums, target) {
4043
}
4144
}
4245
}
43-
4446
return index;
45-
}
46-
47-
return result;
48-
};
47+
}

0 commit comments

Comments
 (0)