**Problem Statement:**
Given an `m x n` integer matrix `matrix`, if an element is `0`, set its entire row and column to `0`'s. You must do it in place.
**Hint / Expected Approach:**
Use first row/col as markers to avoid extra space
**Edge Cases to Consider:**
- (1) No zeros
- (2) All zeros
- (3) Zero in first row or column