1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
name = 'permute/2'
slug = 'generate permutations of a list'
description = '''\
<p><code>permute(L1, L2)</code>: the list <code>L2</code> is a permutation of the elements of the list <code>L1</code>.</p>
<pre>
?- permute([1,2,3], L).
L = [1,2,3] ;
L = [1,3,2] ;
L = [2,1,3] ;
L = [2,3,1] ;
L = [3,1,2] ;
L = [3,2,1].
</pre>'''
hint = {}
|