Here is the code:
import numpy as np
array = np.array([15, 55, 9, 99, 8, 21, 2, 90, 88])
this will output an array([ 15, 55, 9, 99, 8, 21, 2, 90, 88]).
How can I find the first minimum number without sorting then the second minimum number?
I expect the output to be:
first min = 9
second min = 8