Numpy Combine Two Arrays Memilih Min

>>> np.minimum([2, 3, 4], [1, 5, 2])
array([1, 3, 2])
Wild Wallaby