The aim of this activity is to implement an algorithm that returns the union of elements in a collection. Although working with
sets is quick and easy in Python, sometimes we might want to find the union between two lists. Create a function called unite_lists, which uses a loop to go through both lists and return common elements. Do not use the built-in set function.