From 881f8606a183e8303e486bd433e0fd902ba86e6d Mon Sep 17 00:00:00 2001 From: crupest Date: Wed, 24 Feb 2021 14:04:59 +0800 Subject: import(solutions): Add problem 832. --- works/solutions/leetcode/cpp/832.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 works/solutions/leetcode/cpp/832.cpp (limited to 'works/solutions/leetcode/cpp/832.cpp') 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 + +using std::vector; + +class Solution { +public: + vector> flipAndInvertImage(vector> &A) { + const int row_count = A.size(); + const int col_count = A.front().size(); + std::vector> result(row_count, + std::vector(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; + } +}; -- cgit v1.2.3