# coding=utf-8 name = 'diff/3' slug = 'find the difference of two sets' description = '''\
diff(S1, S2, D)
: the list D
contains all elements of S1
that don't appear in S2
, with no duplicates.
?- diff([2,3,5,1,7,9], [3,7,4,5,6], D). D = [2,1,9].''' hint = {}