Given the lists, lst1 and lst2, create a new sorted list
consisting of all the elements of lst1 that do not appear in lst2
together with all the elements of lst2 that do not appear in lst1.
For example, if lst1 is [4, 3, 2, 6, 2] and lst2 is [1, 2, 4, 1,
5], then the new list would be [1, 1, 3, 5, 6]. Note that duplicate
elements are also duplicated in the new list. Associate the new
list with the variable new_list, and don't forget to sort the new
list.
Use python and answer in simplest form. Submission using
codelab