遍历一个等长的数组,并判断数组是否包含输入的整数。
方式1:数组都等长
public class Solution {
public boolean Find(int target, int [][] array) {
for(int x = 0; x < array.length; x++){
for(int y = 0; y < array[x].length; y++){
if(array[x][y] == target){
return true;
}
}
}
return false;
}
}
方式2:数组不等长也可以用
public class Solution {
public boolean Find(int target, int [][] array) {
for(int[] cels : array){
for (int cel : cels){
if (cel == target){
return true;
}
}
}
return false;
}
}