Skip to content

Home

List similarity

Returns a list of elements that exist 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]

More like this

Start typing a keyphrase to see matching snippets.