Skip to content

Instantly share code, notes, and snippets.

@capttwinky
Created October 16, 2012 15:27
Show Gist options
  • Save capttwinky/3899964 to your computer and use it in GitHub Desktop.
Save capttwinky/3899964 to your computer and use it in GitHub Desktop.
def powerSet[A](s: Set[A]) =
s.foldLeft(Set(Set.empty[A])) {
(set, element) =>
set union (set map (_ + element))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment