Write the function UNION which computes the set theoretic
union of two lists. For example,
(union '(a b c d) '(c a g))
returns the list (a b c d g)
union of two lists. For example,
(union '(a b c d) '(c a g))
returns the list (a b c d g)