Given two sparse matrices mat1 of size m x k and mat2 of size k x n, return the result of mat1 * mat2.
You may assume that the intermediate values of the product fit in a 32-bit integer.
- Two 2D integer matrices.
Input: mat1 = [[1, 0, 0], [-1, 0, 3]], mat2 = [[7, 0, 0], [0, 0, 0], [0, 0, 1]]
Output: [[7, 0, 0], [-7, 0, 3]]