Skip to content

Instantly share code, notes, and snippets.

@naveen521kk
Last active April 30, 2021 05:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naveen521kk/c5f76ba9a9257ca628af5d89944d543a to your computer and use it in GitHub Desktop.
Save naveen521kk/c5f76ba9a9257ca628af5d89944d543a to your computer and use it in GitHub Desktop.
Check for common elements in a list
def no_common_element_list(a,b):
return set(a) - set(b) == set(a) and set(b) - set(a) == set(b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment