I have an NSMutableArray that I'd like to check for duplicate strings. I don't need to know what the strings are, just if there are any duplicates.
I'm thinking add the answers to an NSSet, then check to see if the number of entries is different than the original array. Is there a better way to do this?