EPAM Systems Interview Question

Python: Please, remove duplicate items from the list [1, 2, 3, 4, 2, 1, 4, 6, 3]

Interview Answer

Anonymous

Mar 15, 2022

list(set([1, 2, 3, 4, 2, 1, 4, 6, 3]))