>>> listUnion [1,2,3,4,3] [2,1,1] [1,2,3,4,3]
>>> listUnionRight [1,2,3,4,3] [2,1,1] [4,3,2,1,1]
>>> ordNub [1,2,1] :: [Int] [1,2]
>>> ordNubRight [1,2,1] :: [Int] [2,1]