aboutsummaryrefslogtreecommitdiff
path: root/works
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-02-25 16:52:17 +0800
committercrupest <crupest@outlook.com>2021-02-25 16:52:17 +0800
commit38bbf3c76f234aaba39eabf8ea90ec097ab052b2 (patch)
tree3a735500f6125f83a63d66314d5158cac0b3351f /works
parent3f697355723e7b69d564de5b296a55c06f7755ae (diff)
downloadcrupest-38bbf3c76f234aaba39eabf8ea90ec097ab052b2.tar.gz
crupest-38bbf3c76f234aaba39eabf8ea90ec097ab052b2.tar.bz2
crupest-38bbf3c76f234aaba39eabf8ea90ec097ab052b2.zip
import(solutions): Add leetcode 867.
Diffstat (limited to 'works')
-rw-r--r--works/solutions/leetcode/cpp/867.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/works/solutions/leetcode/cpp/867.cpp b/works/solutions/leetcode/cpp/867.cpp
new file mode 100644
index 0000000..9efd176
--- /dev/null
+++ b/works/solutions/leetcode/cpp/867.cpp
@@ -0,0 +1,20 @@
+#include <vector>
+
+using std::vector;
+
+class Solution {
+public:
+ vector<vector<int>> transpose(vector<vector<int>> &matrix) {
+ const int row_count = matrix.size();
+ const int col_count = matrix.front().size();
+
+ vector<vector<int>> result(col_count, std::vector<int>(row_count));
+
+ for (int i = 0; i < row_count; i++)
+ for (int j = 0; j < col_count; j++) {
+ result[j][i] = matrix[i][j];
+ }
+
+ return result;
+ }
+};