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