Tagged Questions
2
votes
3answers
2k views
Prolog list difference routine
I am trying to implement a list difference routine in prolog.
For some reason the following fails:
difference(Xs,Ys,D) :- difference(Xs,Ys,[],D).
difference([],_,A,D) :- D is A, !.
...