Say I have 2 lists with values inside:
list1 = [4, 3, 1, 2, 5]
list2 = [1, 2, 3, 4, 5, 6, 7]
I’d like to return a list containing the difference from these 2 lists, to get [6, 7]
Order within the list isn’t always sorted.
Side question that could be another topic: How do I ensure that all the elements within the list are unique? How does one remove items from a list through the action flow without manually editing the list?