diff options
author | crupest <crupest@outlook.com> | 2021-02-24 14:04:59 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-02-24 14:04:59 +0800 |
commit | e5452ef933639924a49a512542f1218d7079e0f4 (patch) | |
tree | 04cd14e1e19593964b20dc9b8d54daaaf4f44319 /works/solutions/leetcode | |
parent | 3ef437c49bc74f8e4553f6d9b7021a9332c432d6 (diff) | |
download | crupest-e5452ef933639924a49a512542f1218d7079e0f4.tar.gz crupest-e5452ef933639924a49a512542f1218d7079e0f4.tar.bz2 crupest-e5452ef933639924a49a512542f1218d7079e0f4.zip |
import(solutions): Add problem 832.
Diffstat (limited to 'works/solutions/leetcode')
-rw-r--r-- | works/solutions/leetcode/cpp/832.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/works/solutions/leetcode/cpp/832.cpp b/works/solutions/leetcode/cpp/832.cpp new file mode 100644 index 0000000..000fb94 --- /dev/null +++ b/works/solutions/leetcode/cpp/832.cpp @@ -0,0 +1,20 @@ +#include <vector>
+
+using std::vector;
+
+class Solution {
+public:
+ vector<vector<int>> flipAndInvertImage(vector<vector<int>> &A) {
+ const int row_count = A.size();
+ const int col_count = A.front().size();
+ std::vector<std::vector<int>> result(row_count,
+ std::vector<int>(col_count));
+ for (int i = 0; i < row_count; i++) {
+ for (int j = 0; j < col_count; j++) {
+ result[i][j] = !A[i][col_count - j - 1];
+ }
+ }
+
+ return result;
+ }
+};
|