#include <vector>
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param mat int整型vector<vector<>> 
     * @param n int整型 
     * @return int整型vector<vector<>>
     */
    vector<vector<int> > rotateMatrix(vector<vector<int> >& mat, int n) {
        // write code here
        // 行列转变

        vector<vector<int>> ans(n, vector<int>(n,0));

        for(int i=0; i<n; ++i)
        {
            for(int j=0; j<n; ++j)
                ans[j][n-i-1] = mat[i][j];
        }

        return ans;
    }
};