maximum nupy

>>> np.maximum([2, 3, 4], [1, 5, 2])
array([2, 5, 4])
Delightful Dragonfly