Question: Given two sets, Write a function to provide the union of them.

Solution: Create two hash,
- start hashing first set, put each element as output if collision doesn't occurs.
- start hashing each element of this set, if no collision occurs put that in hash as well as as output.

*Check out for better algorithms