mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
700 B
23 lines
700 B
5 months ago
|
import java.util.Arrays;
|
||
|
|
||
|
public class ExerciseRunner {
|
||
|
public static void main(String[] args) {
|
||
|
SpiralMatrix spiralMatrix = new SpiralMatrix();
|
||
|
|
||
|
// Test case 1
|
||
|
int n1 = 3;
|
||
|
int[][] matrix1 = spiralMatrix.generateMatrix(n1);
|
||
|
System.out.println("Spiral matrix for n = " + n1 + ":");
|
||
|
for (int[] row : matrix1) {
|
||
|
System.out.println(Arrays.toString(row));
|
||
|
}
|
||
|
|
||
|
// Test case 2
|
||
|
int n2 = 4;
|
||
|
int[][] matrix2 = spiralMatrix.generateMatrix(n2);
|
||
|
System.out.println("Spiral matrix for n = " + n2 + ":");
|
||
|
for (int[] row : matrix2) {
|
||
|
System.out.println(Arrays.toString(row));
|
||
|
}
|
||
|
}
|
||
|
}
|