更新 0704.二分查找.md:删除多余字符,导致代码未高亮

This commit is contained in:
Steve
2021-12-31 16:29:05 +08:00
parent 4ed7da80c0
commit 0dbd6c42d2

View File

@ -284,7 +284,6 @@ func search(nums []int, target int) int {
* @param {number} target * @param {number} target
* @return {number} * @return {number}
*/ */
/**
var search = function(nums, target) { var search = function(nums, target) {
let left = 0, right = nums.length - 1; let left = 0, right = nums.length - 1;
// 使用左闭右闭区间 // 使用左闭右闭区间