#还是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