Greetings all,
I need to sort an array containing text only values and remove
duplicates at the same time. I was thinking of...
1. Loading all values into one array (Array1)
2. Read through this array and inserting values into a new array
(Array2) only if they don't exist in the second array.
3. Performing a bubble sort of the unique values in array2
Is there an easier of doing this?
Regards,
Dave.
I need to sort an array containing text only values and remove
duplicates at the same time. I was thinking of...
1. Loading all values into one array (Array1)
2. Read through this array and inserting values into a new array
(Array2) only if they don't exist in the second array.
3. Performing a bubble sort of the unique values in array2
Is there an easier of doing this?
Regards,
Dave.
Comment