牛客979462503号
牛客979462503号
全部文章
题解
未归档(4)
归档
标签
去牛客网
登录
/
注册
牛客979462503号的博客
全部文章
/ 题解
(共2篇)
题解 | #顺时针旋转矩阵#
旋转关系: mat[j][n-i-1] = mat[i][j]; 开辟新空间: class Solution { public: vector<vector<int> > rotateMatrix(vector<vector<int> > m...
数组
模拟
2021-08-11
0
398
题解 | #括号序列#
class Solution { public: /** * * @param s string字符串 * @return bool布尔型 */ bool isValid(string s) { // write code ...
栈
模拟
2021-08-10
0
347