Kaushik Narayan R c738e8abfa day 14: 48-rotate-image
checked soln for this one, so doesn't actly count
2023-10-12 09:28:53 -07:00

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);
};