先遍历大括号里面的数组,第几行到第几行,然后再用for循环,遍历数组里面数组的元素。

#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
# 
# @param target int整型 
# @param array int整型二维数组 
# @return bool布尔型
#
class Solution:
    def Find(self , target: int, array: List[List[int]]) -> bool:
        # write code here
        if len(array) == 0 or len(array[0]) ==0:
            return 0
        l = 0
        r = len(array[0]) - 1
        for i in range(len(array)):
            if array[i][0] <= target <= array[i][-1]:###array[i][-1]取所有行倒数第一列:
                for j in range(len(array[i])):
                    if array[i][j] == target:
                        return True
        return False