Please help me to solve this problem: I have a list of lists
[[1,2],[3,4]]
How do I get:
[1,3]
[1,4]
[2,3]
[2,4]
Or if I have a list of lists
[[1,2],[3,4],[6,7]]
How do I get:
[1,3,6]
[1,3,7]
[1,4,6]
[1,4,7]
[2,3,6]
[2,3,7]
[2,4,6]
[2,4,7]
Thanks
|
Please help me to solve this problem: I have a list of lists
How do I get:
Or if I have a list of lists
How do I get:
Thanks | |||||
feedback
|
|
the predicate for accessing a single list element it's the most basic Prolog building block: member/2. And you want a list of all lists' elements: maplist/3 does such mapping. Thus we can write
note that get1/2 it's only required to swap the member/2 arguments: because in (pure) Prolog we are describing relations between arguments, we can swap arguments' order and simplify even more:
Test output:
| |||
|
feedback
|
|
You can do something like this:
That is, take the first element of the first list in your input list and continue recursively with the remaining lists. As a second chance, skip that element and redo with the remaining elements. | |||
|
feedback
|