74. Search a 2D Matrix
Posted 阿怪123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了74. Search a 2D Matrix相关的知识,希望对你有一定的参考价值。
public class Solution { public boolean searchMatrix(int[][] matrix, int target) { int rows=matrix.length; int columns=matrix[0].length; boolean res=false; for(int i=0;i<rows;i++) { for(int j=0;j<columns;j++) { if(matrix[i][j]==target) { res=true; break; } } if(res==true) break; } return res; } }
以上是关于74. Search a 2D Matrix的主要内容,如果未能解决你的问题,请参考以下文章