Question: how to merge two lists without repetitions

how to merge two lists without repetitions?

input [x,y,z] [a,b,x]

return [x,y,z,a,b]

Please Wait...