396 B
396 B
title, type, language, tags, cover, dateModified
| title | type | language | tags | cover | dateModified | |
|---|---|---|---|---|---|---|
| List similarity | snippet | python |
|
sunflowers | 2020-11-02T19:28:35+02:00 |
Returns a list of elements that exist in both lists.
- Use a list comprehension on
ato only keep values contained in both lists.
def similarity(a, b):
return [item for item in a if item in b]
similarity([1, 2, 3], [1, 2, 4]) # [1, 2]