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