I have two different lists in two CSV files.
The first list has 47843 items and the second 813331, which is the first multiplied by 17.
I want to get the index position in the first, based on the value of the second, because the second one repeats the value and does not have the same order as this:
Fisrt 1: ARS-BFGL-BAC-10919 2: ARS-BFGL-BAC-10975 3: ARS-BFGL-BAC-11000 4: ARS-BFGL-BAC-11003 5: ARS-BFGL-BAC-11025 6: ARS-BFGL-BAC-11044 7: ARS-BFGL-BAC-11193 8: ARS-BFGL-BAC-11215 9: ARS-BFGL-BAC-11218 10: ARS-BFGL-BAC-11276 Second: 1: ARS-BFGL-BAC-10919 2: ARS-BFGL-BAC-11003 3: ARS-BFGL-BAC-10975 4: ARS-BFGL-BAC-11044 5: ARS-BFGL-BAC-11000 6: ARS-BFGL-BAC-10975 7: ARS-BFGL-BAC-11025 8 ARS-BFGL-BAC-11193 9: ARS-BFGL-BAC-11044 . . . . . .
I want this result:
{1,4,2,6,3,2,5,7,6....}