EPAM Systems interview question

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

Interview Answer

Anonymous

15 Mar 2022

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