07-15-2014, 10:35 AM
Hello,
I have an array that have multiple repeated information and I want to form a new array with only single entries of what it contains.
Examlpe:
Array a = [1], [2], [2], [3], [3], [4], [5], [5]
Array a_new = [1], [2], [3], [4], [5]
How can I do this? Thanks a lot!
I have an array that have multiple repeated information and I want to form a new array with only single entries of what it contains.
Examlpe:
Array a = [1], [2], [2], [3], [3], [4], [5], [5]
Array a_new = [1], [2], [3], [4], [5]
How can I do this? Thanks a lot!