Skip to content

Instantly share code, notes, and snippets.

@anthonygharvey
Created August 15, 2019 01:50
Show Gist options
  • Save anthonygharvey/a453c635290224205aa22baee19c71e9 to your computer and use it in GitHub Desktop.
Save anthonygharvey/a453c635290224205aa22baee19c71e9 to your computer and use it in GitHub Desktop.
list_1 = ['a', 'b', 'c']
list_2 = ['c', 'd', 'e']
common_elements = list_1 & list_2
common_elements #=> ["c"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment