mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 06:14:07 +00:00
8 lines
186 B
C++
8 lines
186 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
class Solution
|
|
{
|
|
public:
|
|
void rotate(vector<vector<int>> &matrix);
|
|
bool test(vector<vector<int>> &matrix, vector<vector<int>> &answer);
|
|
}; |