name = 'is_superset/2' slug = 'check if one set is a superset of the other' description = '''\

is_superset(S1, S2): the set S1 is a superset (contains all elements) of S2.

?- is_superset([3,2,1,4,5,9], [2,1,3,5]).
  true.
?- is_superset([3,2,1,4,5,9], [2,1,3,5,0]).
  false.
''' hint = {}