我有这个函数
sublist(_,[_],_) :-
!.
sublist(X,[Y|T],Z) :-
R is X - Y,
sublist(X,T,[R|Z]).
an example call is sublist(2,[1,2,3],Z)
.
At the end of execution it just gives me yes , but i d like to see the contents of Z.
我知道这是一件简单的事情,因为我有其他类似的指示,但这一个不起作用。