I know there is a very simple way to do this, but for some reason, the
method is escaping me. Let's say I have a list of 10 numbers:
1,2,3,4,4,5,5,6,7,8. So, there are two 4's and two 5's. What I would
like to do is search the list and if there is a duplicate number, then
report a true value for the first one, and a false value for the
duplicate. Ultimately, I would just like my list that originally had
10 numbers to have 8, which would look like 1,2,3,4,5,6,7,8. I could
then feed that boolean list to a Dispatch component to split the
list. Is there any easy way to do this. Maybe it's just late and my
brain isn't working properly. Thanks for the help.
-Andy