404 B
404 B
title, type, language, tags, cover, dateModified
| title | type | language | tags | cover | dateModified | |
|---|---|---|---|---|---|---|
| Unique elements in list | snippet | python |
|
cold-mountains | 2020-09-15T16:13:06+03:00 |
Returns the unique elements in a given list.
- Create a
setfrom the list to discard duplicated values, then return alistfrom it.
def unique_elements(li):
return list(set(li))
unique_elements([1, 2, 2, 3, 4, 3]) # [1, 2, 3, 4]