Problem
Write a method that computes the average of the neighbors of a two-dimensional array element in the eight directions public static double neighborAverage(int[][] values, int row, int column) However, if the element is located at the boundary of the array, only include the neighbors that are in the array. For example, if row and column are both 0, there are only three neighbors.