I\'m trying to find a function that returns all occurrences of the maximum in a given list.
numpy.argmax however only returns the first occurrence that it f
Much simpler...
list[list == np.max(list)]