Hi. I have a list of different text items. I want to make sure there are no duplicates. To do so i create a set of the list and check if len list is equal to len set.
If the two lengths are not equal i want to know the duplicate values (the values removed when creating the set.) Is there an easy way to do this?