Suppose the next vector:
just_a_random_vector <- c("A", "B", "B", "C", "C", "D")
The idea is that if certain value has duplicates then drop all duplicate values and the value itself. In order to get something that looks like this:
# A D
Is there any way to get the above output?