summaryrefslogtreecommitdiff
path: root/prolog/problems/lists/permute_2/en.py
blob: 048713e0e99e6f7f8d1365425dba9609378e37f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# coding=utf-8

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 = {}