aboutsummaryrefslogtreecommitdiff
path: root/Computer_Science/leetcode/73-set_matrix_zeros.c~
blob: e9f222b524696e74dbcfa47d141142597fdf31aa (plain)
1
2
3
4
5
6
7
void helper(int** matrix, int offset, int rowSize, int colSize)
{
	if(offset > rowSize || offset > colSize)
		return;
}
void setZeroes(int** matrix, int matrixRowSize, int matrixColSize) {    
}