SciPy - Sparse Matrices (scipy.sparse)
Find the bug in this code:
from scipy.sparse import csr_matrix csr = csr_matrix(([1, 2], [0, 1], [0, 1])) print(csr.shape)
