public class Solution { public boolean Find(int target, int [][] array) { for(int i = 0;i < array.length;i++) { for(int j = 0;j < array[i].length;j++) { if(array[i][j] > target) break;//要注意如果出现了大于他的数,后面的数都比他大 if(array[i][j] == target) return true; } }

	return false;
}

}