Given a list filled with arbitrary integers.
Get a new list, the elements of which will be:
non-duplicate elements of the source list: for example,
lst = [1, 2, 4, 5, 6, 2, 5, 2], you need to getlst2 = [1, 2, 4, 5, 6]elements of the original list that do not have repetitions: for example,
lst = [1 , 2, 4, 5, 6, 2, 5, 2], you need to getlst2 = [1, 4, 6].