I have to write a program which has a predicate p(A,B,C,D,E,F). A,B,C,D,E,F are lists.
A contains D, E and F. (Something like A and B is D, A and C is E) F contains A without D and E.
And also elements in list F are in pairs (example if A contains [a,b,c] then F would contain [a,a,b,b,c,c].)
So.. I can't get where to start. I have read tutorial and still.. I don't quite get it.
example:
A is [a,b,c,d,e,f,g]
B is [a,c,d,q,w]
C is [e,d,g,m,n]
D is [a,c,d]
E is [e,d,g]
F is [b,b,f,f]
Fshould contains "pairs"? - aioobeA,B,C,D,EandFget their values. Is it testing, if so what is to be tested? Or is it building, again if so what is to be built? There must be some rules for it. what are they? - rvirding