Files
30-seconds-of-code/snippets/python/s/similarity.md
2023-05-07 16:07:29 +03:00

396 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
List similarity snippet python
list
sunflowers 2020-11-02T19:28:35+02:00

Returns a list of elements that exist in both lists.

  • Use a list comprehension on a to 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]