摘要: int d[2][2]={-1,1,1,-1}; // -1 1 // 1 -1 class Solution { public: vector<int> findDiagonalOrder(vector<vector<int>>& mat) { vector<int> ans; int m=mat 阅读全文
posted @ 2022-06-14 22:35 wegret 阅读(21) 评论(0) 推荐(0)