Skip to content

Instantly share code, notes, and snippets.

@jobscry
Created September 19, 2010 05:41
Show Gist options
  • Save jobscry/586437 to your computer and use it in GitHub Desktop.
Save jobscry/586437 to your computer and use it in GitHub Desktop.
def put_together():
print "---ENTERING LIST ASSEMBLY---"
together = currentbhl+afbhl
print "Lists joined. Sorting and removing duplicates..."
together_unique = sorted(list(set(together)))
print '%s duplicates found and removed' % (len(together) - len(together_unique))
print "---EXITING LIST ASSEMBLY---"
return together
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment