GubertDisentis
Vendor
I have an array as follows :
a(0) = "f"
a(1) = "a"
a(2) = "b"
a(3) = "c"
a(4) = "a"
a(5) = "b"
a(6) = "d" etc The size of the array is appr 70000
Many values are repeats ( a and b ) in the above sample.
How can I create an array which would contain only
f,a ( but only once ) b ( only once ) c and d
Thanks
a(0) = "f"
a(1) = "a"
a(2) = "b"
a(3) = "c"
a(4) = "a"
a(5) = "b"
a(6) = "d" etc The size of the array is appr 70000
Many values are repeats ( a and b ) in the above sample.
How can I create an array which would contain only
f,a ( but only once ) b ( only once ) c and d
Thanks