题解 | #二维数组中的查找#
二维数组中的查找
http://www.nowcoder.com/practice/abc3fe2ce8e146608e868a70efebf62e
# -*- coding:utf-8 -*- class Solution: # array 二维列表 def Find(self, target, array): array1 = [i for j in array for i in j] if target in array1: return True else: return False # write code here