首页 > nc18
头像
诗云panther
发布于 2021-08-08 13:39
+ 关注

nc18

class Solution {
public:
    vector<vector<int> > rotateMatrix(vector<vector<int> > mat, int n) {
        vector<vector<int> > ans(n);
        for(int i = 0 ; i < n ; i++)
        {
            ans[i].resize(n);
        }
        for(int x = 0 ; x < n ;x++)
        {
            for(int y = 0 ; y < n ; y++)
            {
                ans[y][n-1-x] = mat[x][y];
            }
        }
        return ans;
    }
};

全部评论

(0) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

近期精华帖

热门推荐