Removing duplicate elements from an array in Swift
I might have an array that looks like the following:
[1, 4, 2, 2, 6, 24, 15, 2, 60, 15, 6]
Or, really, any sequence of like-typed portions of data. What I want to do is ensure that there is only one o..