mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 12:44:06 +00:00
10 lines
268 B
C++
10 lines
268 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
vector<vector<int>> matrix{{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
|
|
vector<vector<int>> answer{{7, 4, 1}, {8, 5, 2}, {9, 6, 3}};
|
|
Solution soln;
|
|
cout << "Rotated image matrix correctly? " << soln.test(matrix, answer) << endl;
|
|
return 0;
|
|
} |