本文最后更新于:2020年11月18日 下午
class Solution:
def findNumberIn2DArray(self, matrix, target):
i,j = len(matrix) - 1, 0
while i >= 0 and j < len(matrix[0]):
if matrix[i][j] > target: i -= 1
elif matrix[i][j] < target: j += 1
else: return True
return False
本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!