intersection entre deux tableaux en utilisant Numpy

>>> np.intersect1d([1, 3, 4, 3], [3, 1, 2, 1])
array([1, 3])
Real Reindeer