NumPy - Array Operations
Given two arrays:
Which code correctly uses a NumPy ufunc to find the element-wise minimum?
a = np.array([7, 3, 9]) b = np.array([5, 8, 2])
Which code correctly uses a NumPy ufunc to find the element-wise minimum?
