(String[] args)
| 59 | } |
| 60 | |
| 61 | public static void main(String[] args) { |
| 62 | int[][] matrix = AssortedMethods.randomMatrix(7, 7, 0, 1); |
| 63 | AssortedMethods.printMatrix(matrix); |
| 64 | Subsquare square = findSquare(matrix); |
| 65 | square.print(); |
| 66 | } |
| 67 | } |
nothing calls this directly
no test coverage detected