I might have an array that looks like the following:
[1, 4, 2, 2, 6, 24, 15, 2, 60, 15, 6]
Or, reall
extension Sequence where Element: Hashable { func unique() -> [Element] { NSOrderedSet(array: self as! [Any]).array as! [Element] } }