I was trying to find out the problem but unsuccessfully Could you tell me what is wrong?
% using accumulator
deleteall(X,Y,Zs) :- deleteall(X,Y, [], Zs).
deleteall(X, [], Zs, Zs).
deleteall(X, [X|Xs], Xs, V).
deleteall(X, [Y|Xs], [Y|Zs], V) :- deleteall(X, Xs, Zs,V).
Singleton variables are always suspicious, and in your case, what's the meaning of V in
deleteall(X, [X|Xs], Xs, V).
?Apart that, I don't understand why you are using an accumulator.
Are you assigned to reverse the elements not deleted? Otherwise, here is a deleteall that works...
test: