I have the list
t1 = {{-1, 0}, {-2, 0}, {-3, 0}, {0, 0}, {-2, 0}, {1, 1}}
How do I find the position where an element repeats? In this case it would be element {-2, 0} at position 5, because {-2, 0} first came up at postion 2. So the answer would be 5.
I made it to comparisons with the first element but don't know how to procede.