Skip to content

Instantly share code, notes, and snippets.

@MaxMonteil
Created April 1, 2019 11:31
Show Gist options
  • Save MaxMonteil/4025dafe453fc2dbdfe39ed841b21013 to your computer and use it in GitHub Desktop.
Save MaxMonteil/4025dafe453fc2dbdfe39ed841b21013 to your computer and use it in GitHub Desktop.
def uniteUnique(*lss):
values = []
for element in lss:
values.extend(element)
unique = []
for value in values:
if value not in unique:
unique.append(value)
return unique
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment