I have several lists that correspond to one another -- same number of points, etc. I remove the nth item from listA using deduplicate(). How can I then remove the nth item from listB and listC? I looked at the documentation for deduplicate_indexed(), but that doesn't seem to be the solution.
Perhaps a new function find_duplicate() that provides a list of indices for items to be deleted?
Thanks