Problem Description
Note: This will be evaluated on the extra memory used. Try to minimize the space and time complexity.
[ [1, 0, 1], [1, 1, 1], [1, 1, 1] ]Input 2:
[ [1, 0, 1], [1, 1, 1], [1, 0, 1] ]
[ [0, 0, 0], [1, 0, 1], [1, 0, 1] ]Output 2:
[ [0, 0, 0], [1, 0, 1], [0, 0, 0] ]
NOTE: You only need to implement the given function. Do not read input, instead use the arguments to the function. Do not print the output, instead return values as specified. Still have a question? Checkout Sample Codes for more details.