We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 206d104 + 40e0abb commit 2b1e9e6Copy full SHA for 2b1e9e6
zh-hans/binary_search/search_in_rotated_sorted_array_ii.md
@@ -102,7 +102,7 @@ public class Solution {
102
ub = mid;
103
}
104
} else {
105
- // case3: A[mid] == target
+ // case3: A[mid] == A[lb]
106
lb++;
107
108
@@ -117,7 +117,7 @@ public class Solution {
117
118
### 源码分析
119
120
-在`A[start] == A[mid]`时递增start序号即可。
+在`A[lb] == A[mid]`时递增lb序号即可。
121
122
### 复杂度分析
123
0 commit comments