summaryrefslogtreecommitdiff
path: root/prolog/problems/lists/permute_2/en.py
blob: 8898c83644ffacc3ea34d9e4be3bf693256d9262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
id = 107
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 = {}