Skip to content

Commit 87d29d6

Browse files
committed
Update P112. 搜索二维矩阵.md
1 parent e6db441 commit 87d29d6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

P112. 搜索二维矩阵.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class Solution(object):
1111
1212
row = len(matrix)-1
1313
col = 0
14+
#从左下角或右上角开始搜索
1415
start = matrix[row][col]
1516
1617
while (row>=0 and col < len(matrix[0])):

0 commit comments

Comments
 (0)