What would be a numpy function that goes through array a
and then output the indexes where values of array b
is allocated.
Code:
a = np.array(["BTCUSD", "ETHUSDC", "BBB", "ETHUSD", "cow"])
b= np.array(["BTCUSD", "ETHUSD"])
Expected output:
Indexes: 0, 3