public class Solution {
public int[][] rotateMatrix(int[][] mat, int n) {
// write code here
// 这道题难度不是很大的,还是要自己画图。画完图,就很容易找到规律了。
// 定义返回结果
int[][] result = new int[n][n];
// 定义一个整型变量,用于存放临时数据
int dest = n - 1;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
result[j][dest] = mat[i][j]; // 行->列(但是,是从右往左) 列->行(从上往下)
}
dest--;
}
return result;
}
}