I have two lists of strings and want to compare them and extract values in such a way that the below scenario holds true :
list1 = {0,1,2,3,3}
list2 = {0,1,2,3}
Expected O/P : 3 .(I need to ignore the values that have a pair in other list and get only the remaining ones). The item order will remain same in most of scenarios, it would be good if we cover the edge case scenario as well in which the order differs.