🎉 One-stop destination for all your technical interview Preparation 🎉
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.
y=1-y
or y^=1
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;
}
};