Complete-Preparation

🎉 One-stop destination for all your technical interview Preparation 🎉

View the Project on GitHub

832. Flipping an Image 🌟

Given an n x n binary matrix image, flip the image horizontally, then invert it, and return the resulting image.

To flip an image horizontally means that each row of the image is reversed.

To invert an image means that each 0 is replaced by 1, and each 1 is replaced by 0.

O(N^2) Time and O(1) Space

Code

class Solution {
public:
    vector<vector<int>> flipAndInvertImage(vector<vector<int>>& image) {
        for(auto &x:image){
            reverse(x.begin(),x.end());
            for(auto &y:x){
                y^=1;
            }
        }
        return image;
    }
};