I have a sorted array and i want to take every element once into an other array
Example: array[] = { 1,2,2,3,3,5 } Output: array2[] = { 1,2,3,5 }