diff --git a/problems/0035.搜索插入位置.md b/problems/0035.搜索插入位置.md index 12fe714e..c351e365 100644 --- a/problems/0035.搜索插入位置.md +++ b/problems/0035.搜索插入位置.md @@ -212,7 +212,7 @@ class Solution { public int searchInsert(int[] nums, int target) { int n = nums.length; - // 定义target在左闭右闭的区间里,[low, high] + // 定义target在左闭右闭的区间,[low, high] int low = 0; int high = n - 1;