Skip to content

Instantly share code, notes, and snippets.

@macabreb0b
Created October 31, 2014 17:26
Show Gist options
  • Save macabreb0b/fcfe61f09f08065f178f to your computer and use it in GitHub Desktop.
Save macabreb0b/fcfe61f09f08065f178f to your computer and use it in GitHub Desktop.
def subsets(array)
return [[]] if array.empty?
first = array.shift
subs = subsets(array)
other_subs = subs.map do |sub|
sub = sub + [first]
end
other_subs + subs
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment