Loading

摘要: 题目 74. 搜索二维矩阵 思路1(暴力) 遍历二维数组的所有的元素,看看是否存在target 代码 class Solution { public boolean searchMatrix(int[][] matrix, int target) { for (int i = 0; i < matr 阅读全文
posted @ 2020-11-28 23:25 linzeliang 阅读(211) 评论(0) 推荐(0)