public int[][] generateMatrix(int n) {
int k = 1;// number to be put in
int top = 0;
int left = 0;
int bottom = n - 1;
int right = n - 1;
int[][] res = new int[n][n];
while (k <= n * n) {
// fill top going right
for (int i = left; i <= right; i++) {
res[top][i] = k;
k++;
}
top++;
// fill right going down
for (int i = top; i <= bottom; i++) {
res[i][right] = k;
k++;
}
right--;
// fill bottom going left, until "left"
for (int i = right; i >= left; i--) {
res[bottom][i] = k;
k++;
}
bottom--;
// fill left going up, until "top"
for (int i = bottom; i >= top; i--) {
res[i][left] = k;
k++;
}
left++;
}
return res;
}