SciPy - Linear Algebra (scipy.linalg)
Identify the error in this code snippet:
import numpy as np from scipy.linalg import det N = np.array([[1, 2, 3], [4, 5, 6]]) print(det(N))
