Google Interview Question — LeetCode 1284

Y Tech
2 min readFeb 2, 2022

In this post, we are going to discuss leetcode 1284 — Minimum Number of Flips to Convert Binary Matrix to Zero Matrix, which is asked in Google interviews.

Problem Analysis

Given a m x n binary matrix mat. In one step, you can choose one cell and flip it and all the four neighbors of it if they exist (Flip is changing 1 to 0 and 0 to 1). A pair of cells are called neighbors if they share one edge.

Return the minimum number of steps required to convert mat to a zero matrix or -1 if you cannot.

--

--