SciPy - Sparse Matrices (scipy.sparse)
Identify the error in this code snippet:
from scipy.sparse import csr_matrix row = [0, 1] col = [1, 2] data = [3, 4] sparse = csr_matrix(data, (row, col))
