void helper(int** matrix, int offset, int rowSize, int colSize) { if(offset > rowSize || offset > colSize) return; } void setZeroes(int** matrix, int matrixRowSize, int matrixColSize) { }