an array of integers
set of unique integers
Given a list of any type, return a copy of the array with all duplicates removed. This only works with arrays with primitives, arrays with objects or arrays will not work.
[1,2,3,2,1] will result in [1,2,3] Copy
[1,2,3,2,1] will result in [1,2,3]
an array of integers