Duplicates List from Sequence
- Posted by "C. K. Lester" <cklester at HOTPOP.COM> Jan 05, 2000
- 532 views
Who has the fastest duplicate finder? sequence a = { a, b, c, d, e, a, b, c, f } dupeList = duplicates(a) dupeList = { a, b, c } Maybe it should return positions in the sequence, such as dupeList = { {1,6}, {2,7}, {3,8} } Anybody have thoughts on this? Thanks! < |<