Quick way to compare two lists and identify the uncommon elements
Does anyone know a quick way to compare two lists and identify any different list elements (i.e. uncommon elements)? I can do this using two, nested loops, but like many things in JSL I was hoping there might be some obscure, easier way . dj My lists are much larger than this of course: list1={"apple","pear","orange","kiwi","watermelon"}; list2={"apple","pear","orange","kiwi","strawberry","wat...