I have a list of strings I want to join into one string, BUT I want to check to make sure it’s not the same string repeated over and over.
Example List:
DOG
DOG
CAT
PIGEON
CAT
I want the final string to be “DOG/CAT/PIGEON”.
How would I do that?
Thanks!
Matt