Pybites Logo

List exercise: return first occurrence indices of duplicated words

Level: Intermediate (score: 3)

In this Bite you are presented with a list of words. Loop through them and find all the words that are duplicated. Of those return the (0-based) indices of the first occurrence.

Example: ['this', 'is', 'a', 'new', 'bite', 'I', 'hope', 'this', 'bite', 'will', 'teach', 'you', 'something', 'new'] would return [0, 3, 4], because this, new, and bite are duplicated and are at index 0, 3 and 4 respectively.