|
5 |
edited tags
|
||
|
4 | Clarified the question | ||
|
Given a NxN matrix with 0s and 1s. now whenever you encounter Set every row that contains a Flip 1 to 0 and all for For example 1 0 1 1 0 0 1 1 1 0 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 results in 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 A Microsoft Engineer told me that there is a solution that involves no extra memory, just two boolean variables and one pass, so I'm looking for that answer. BTW, imagine it is a bit matrix, therefore just 1s and 0s are allow to be in the matrix. |
||||
|
3 | improved formatting | ||
|
Given a NxN matrix with 0s and 1s. now whenever you encounter a 0 make the corresponding row and column elements 0. Flip 1 to 0 and 0 remains as they are. for example 1 0 1 1 0 0 1 1 1 0 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 results in 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 A Microsoft Engineer told me that there is a solution that involves no extra memory, just two boolean variables and one pass, so I'm looking for that answer. BTW, imagine it is a bit matrix, therefore just 1s and 0s are allow to be in the matrix. |
||||
|
2 | added 13 characters in body | ||
|
1 |
|
||
