# Perl Weekly Challenge 68: Zero Matrix
These are some answers to the Week 68 of the Perl Weekly Challenge organized by Mohammad S. Anwar.
Task 1: Zero Matrix
You are given a matrix of size M x N having only 0s and 1s.
Write a script to set the entire row and column to 0 if an element is 0.
Example 1:
Input: [1, 0, 1]
[1, 1, 1]
[1, 1, 1]
Output: [0, 0, 0]
[1, 0, 1]
[1, 0, 1]
Example 2:

