Skip to content

Instantly share code, notes, and snippets.

@yasyf
Created November 13, 2016 00:09
Show Gist options
  • Save yasyf/e8f60656d9a1fce388db427d5ec93164 to your computer and use it in GitHub Desktop.
Save yasyf/e8f60656d9a1fce388db427d5ec93164 to your computer and use it in GitHub Desktop.
import collections
def flatten(l):
return sum(map(lambda x: x if isinstance(x, collections.Sequence) else [x], l), [])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment