Please help me to solve this problem:
subset(N, [1,2,3], L).
if N=2, I want the result is that:
[1,2];
[2,1];
[1,3];
[3,1];
[2,3];
[3,2];
(in any order)
Thanks in advance.
|
Please help me to solve this problem:
if N=2, I want the result is that:
(in any order) Thanks in advance. | |||||||||||||||
feedback
|
|
Well, your base case is trivial:
If N>0, you have 2 choices as to what to do with the first element of Lst:
You might think you have to worry about Lst being too short (or N being too big: same thing), but if you've coded the above properly, it should be taken care of for you. Hoep that's enough to get you started. | |||||||||
feedback
|
|
I rewrite this solution: (based on: Combinations of the elements of a list - Prolog)
The result (tested in SWI-Prolog):
| |||
|
feedback
|