(String[] args)
| 53 | } |
| 54 | |
| 55 | public static void main(String[] args) { |
| 56 | int[][] matrix = AssortedMethods.randomMatrix(5, 7, -100, 100); |
| 57 | int sum = maxSubMatrix(matrix); |
| 58 | AssortedMethods.printMatrix(matrix); |
| 59 | System.out.println(sum); |
| 60 | } |
| 61 | |
| 62 | } |
nothing calls this directly
no test coverage detected