# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
#
# @param target int整型
# @param array int整型二维数组
# @return bool布尔型javascript:void;
# 一开始暴力做的,看了大神的解法,自己实现了一下
class Solution:
def Find(self , target: int, array: List[List[int]]) -> bool:
# write code here
r=0
c=len(array[0])-1
while(r<len(array) and c>=0):
if target==array[r][c]:
return True
if target>array[r][c]:
r+=1
else:
c-=1
return False