summaryrefslogtreecommitdiff
path: root/prolog/problems/denotational_semantics/prog_listswap_2/en.py
blob: 7db473b8073d0fee3ea6fc5a54114c79b98955e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name = 'prog_listswap/2'
slug = 'list-manipulation language'

description = '''\
<p>
Write a DCG for manipulating list elements. The first symbol in every word is
<code>[begin]</code>, followed by any sequence of "instruction" symbols from
the set {<code>left</code>, <code>right</code>, <code>swap</code>}, and finally
the symbol <code>[end]</code>. The starting symbol should be named
<code>prog_listswap</code>.
</p>

<p>This exercise has already been solved for you. Check how it works in the console.</p>

<p>
Example words: <code>[begin,right,swap,end]</code>, <code>[begin,right,right,swap,left,swap,end]</code>.
</p>
'''

hint = {}