Scenario: An array of strings, many are duplicated.
Goal: Produce a UNIQUE array of strings.
Modus Operandi: I was thinking of converting the array to a set of strings which become unique; from which to generate a new array of unique strings.
Question: How does one convert a Swift array into a Swift Set?