I have two string lists
listA = {a, b, c}
listB = {e, a, b, d, c}
I want to have a single list with all the elements without any repeated,
Example: listFinal = {a,b,c,d,e},
I've done it by doing this:
listB.removeAll(lis...
asked by
16.08.2018 / 17:31