直接遍历判断就好了 似乎没有那么复杂 运行时间50ms也能接受 class Solution: def Find(self , target: int, array: List[List[int]]) -> bool: re = False  ...