题解 | #二维数组中的查找#
二维数组中的查找
https://www.nowcoder.com/practice/abc3fe2ce8e146608e868a70efebf62e
#还是py简单
class Solution:
def Find(self , target: int, array: List[List[int]]) -> bool:
for i in array:
if target in i:
return True
return False

