I am trying to remove any elements from a list that has a duplication.
The example that I am trying to achieve is:
a, b, c d, g, h, i, d, c, b, a
would reduce down to: g, h, i
I have found a lot of great ways to remove duplications but I haven't come across a way to remove elements if a duplication exists. Thanks for any assistance