NumPy - Broadcasting
What will be the output of this code?
import numpy as np x = np.array([[2, 4, 6], [8, 10, 12]]) y = np.array([1, 0, -1]) print(x - y)
