Skip to content

Commit f452c15

Browse files
committed
minor fix
1 parent c01015a commit f452c15

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

basic_algorithm/binary_search.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,13 @@ class Solution:
220220
return False
221221
```
222222

223+
另一种方法,从右上角开始搜索,每次排除一行/一列,太神奇了!
224+
[search-a-2d-matrix-ii](https://leetcode-cn.com/problems/search-a-2d-matrix-ii/)
225+
226+
227+
228+
229+
223230
### [find-minimum-in-rotated-sorted-array](https://leetcode-cn.com/problems/find-minimum-in-rotated-sorted-array/)
224231

225232
> 假设按照升序排序的数组在预先未知的某个点上进行了旋转,例如,数组 [0, 1, 2, 4, 5, 6, 7] 可能变为 [4, 5, 6, 7, 0, 1, 2]。请找出其中最小的元素。假设数组中无重复元素。

0 commit comments

Comments
 (0)