# coding=utf-8 name = 'intersect/3' slug = 'Poišči presek dveh množic' description = '''\
intersect(S1, S2, I): seznam I vsebuje presek elementov v S1 in S2.
intersect(S1, S2, I)
I
S1
S2
?- intersect([1,5,6,3,4,2], [8,1,5,9,4,3], I). I = [1,5,3,4].