Question: What does the following Prolog program do? m(X, Y):-m2(X, Y, [ ] ). m2([ ], X, X). m2([X|Y], [X, X|Z], W) :- m2(Y, Z, W).
What does the following Prolog program do?
m(X, Y):-m2(X, Y, [ ] ). m2([ ], X, X). m2([X|Y], [X, X|Z], W) :- m2(Y, Z, W).
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
