Hello. I have a series of 4 lists of numbers, and I want to
combine the lists into one long list, with no duplicates (if there
are any).
For example, given the following lists:
a - (1,2,3,4,5,6,7)
b - (1,3,5,7,9,11,13)
c - (2, 8, 10, 15, 16)
d - (2, 3, 4, 5)
I want to get a single list e comprised of
(1,2,3,4,5,6,7,8,9,10,11,13,15,16) using CFML. If this is something
better accomplished within a CFSCRIPT, that would be fine. I just
can't find the information to do this in the documentation I have.
Thanks!