LeetCode 搜索二維矩陣 II

public boolean searchMatrix(int[][] matrix, int target) { if(matrix.length==0 || matrix[0].length==0) return false; int i=matrix.length-1; int j=0; while(true){
相關文章
相關標籤/搜索