Skip to content

Instantly share code, notes, and snippets.

Created September 22, 2008 17:39
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 anonymous/e05c3be86abf74b44853 to your computer and use it in GitHub Desktop.
Save anonymous/e05c3be86abf74b44853 to your computer and use it in GitHub Desktop.
class Array
def powerset
inject([[]]) { |a,e| a + a.map { |b| b+[e] } }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment