题解 | #二维数组中的查找#
二维数组中的查找
https://www.nowcoder.com/practice/abc3fe2ce8e146608e868a70efebf62e
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param target int整型 # @param array int整型二维数组 # @return bool布尔型 # class Solution: def Find(self , target: int, array: List[List[int]]) -> bool: # write code here if not array or not array[0]: return False m, n = len(array), len(array[0]) row, col = 0, n-1 # 从右上角开始 while row < m and col >= 0: if array[row][col] == target: return True elif array[row][col] < target: row += 1 else: col -= 1 return False
从二维数组的右上角开始搜索。如果当前值等于目标值,它返回 True
。如果当前值小于目标值,它向下移动。如果当前值大于目标值,它向左移动。