NumPy - Broadcasting
What is the output of this code?
import numpy as np x = np.array([[1, 2, 3], [4, 5, 6]]) y = np.array([10, 20]) result = x + y print(result)
