We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
int sum[][] = new int[4][4];
for(int x=0; x<4; ++x){
for(int y=0; y<4; ++y) {
sum[x][y] = arr.get(x).get(y)+arr.get(x).get(y+1)+arr.get(x).get(y+2)+
arr.get(x+1).get(y+1)+
arr.get(x+2).get(y)+arr.get(x+2).get(y+1)+arr.get(x+2).get(y+2);
}
}
int num = 0;
int max = sum[0][0];
for(int x=0; x<4; ++x) {
for (int y = 0; y < 4; ++y) {
num = sum[x][y];
if (num > max) {
max = num;
}
}
}
System.out.print(max);
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Join us
Create a HackerRank account
Be part of a 26 million-strong community of developers
Please signup or login in order to view this challenge
Java 2D Array
You are viewing a single comment's thread. Return to all comments →