mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
17 lines
428 B
C++
17 lines
428 B
C++
#include <algorithm>
|
|
#include <vector>
|
|
|
|
class Solution {
|
|
public:
|
|
void rotate(std::vector<std::vector<int>> &matrix) {
|
|
for (std::size_t i = 0; i < matrix.size(); i++) {
|
|
for (std::size_t j = i; j < matrix.size(); j++) {
|
|
std::swap(matrix[i][j], matrix[j][i]);
|
|
}
|
|
}
|
|
|
|
for (auto &row : matrix) {
|
|
std::reverse(row.begin(), row.end());
|
|
}
|
|
}
|
|
};
|