How to display unique elements of an array using Swift? [duplicate]
This question already has an answer here: Removing duplicate elements from an array in Swift 38 answers Swift 3 Generics: How to Find The Common Set of Two Generic Arrays 2 answers I have a formula retuning an array as example var Array = [a,s,d,s,f,g,g,h,e] . What I want is to run a for loop or some other option that gives me back a,s,d,f,g,h,e - only the unique values. How can I do this with ios Swift? If you don't care about order: Simply use a set: let set: Set = ["a", "s", "d", "s", "f", "g" , "g", "h", "e"] print(set) // ["a", "s", "f", "g", "e", "d", "h"] If you care about the order: