NumPy - Array Operations
Given arrays:
Which code correctly computes the element-wise average of
a = np.array([1, 2, 3]) b = np.array([4, 5, 6])
Which code correctly computes the element-wise average of
a and b?