We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6db441 commit 87d29d6Copy full SHA for 87d29d6
P112. 搜索二维矩阵.md
@@ -11,6 +11,7 @@ class Solution(object):
11
12
row = len(matrix)-1
13
col = 0
14
+ #从左下角或右上角开始搜索
15
start = matrix[row][col]
16
17
while (row>=0 and col < len(matrix[0])):
0 commit comments