#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
# 
# @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])
        i,j = 0,n-1
        while j>=0 and i<m:
            if array[i][j] == target:
                return True
            if array[i][j] > target:
                j-=1
            else:
                i+=1
        return False