I have two lists that i need to combine where the second list has any duplicates of the first list ignored. .. A bit hard to explain, so let me show an example of what the c
Based on the recipe :
resulting_list = list(set().union(first_list, second_list))