name = 'powerset/2' slug = 'Poišči potenčno množico od dane množice' description = '''\

powerset(Set, Powerset): množica Powerset vsebuje vse podmnožice od množice Set.

?- powerset([1,2,3], L).
  L = [[1,2,3],[1,2],[1,3],[1],[2,3],[2],[3],[]].
''' hint = {}