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.
publicclassSolution{publicstaticvoidmain(String[]args)throwsIOException{BufferedReaderbufferedReader=newBufferedReader(newInputStreamReader(System.in));List<List<Integer>>arr=newArrayList<>();IntStream.range(0,6).forEach(i->{try{arr.add(Stream.of(bufferedReader.readLine().replaceAll("\\s+$","").split(" ")).map(Integer::parseInt).collect(toList()));}catch(IOExceptionex){thrownewRuntimeException(ex);}});System.out.println(getMaximumSumOfHourglass(arr));bufferedReader.close();}privatestaticintgetMaximumSumOfHourglass(List<List<Integer>>arr){intmax=Integer.MIN_VALUE;intsum;for(inti=1;i<arr.size()-1;i++){for(intj=1;j<arr.get(0).size()-1;j++){sum=0;// Row above center pointsum+=arr.get(i-1).get(j-1);sum+=arr.get(i-1).get(j);sum+=arr.get(i-1).get(j+1);// Center pointsum+=arr.get(i).get(j);// Row below center pointsum+=arr.get(i+1).get(j-1);sum+=arr.get(i+1).get(j);sum+=arr.get(i+1).get(j+1);if(sum>max)max=sum;}}returnmax;}}
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 →