(String[] args)
| 82 | } |
| 83 | |
| 84 | public static void main(String[] args) { |
| 85 | int[][] matrix = AssortedMethods.randomMatrix(7, 7, 0, 1); |
| 86 | AssortedMethods.printMatrix(matrix); |
| 87 | Subsquare square = findSquare(matrix); |
| 88 | square.print(); |
| 89 | } |
| 90 | } |
nothing calls this directly
no test coverage detected